User Tools

Site Tools


plugins:creation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
plugins:creation [2017/01/18 17:40]
lokothodida [Data & Settings]
plugins:creation [2017/01/18 20:15]
lokothodida [Internationalization (I18N)]
Line 178: Line 178:
 </​code>​ </​code>​
  
-To register your i18n array, call ''​i18n_merge''​ with the ID of your plugin (**before ​the plugin is registered**):+To register your i18n array, call ''​i18n_merge''​ with the ID of your plugin (**before** ​''​register_plugin''​ is called):
  
 <code php> <code php>
Line 214: Line 214:
 // Set up the folder name and its permissions // Set up the folder name and its permissions
 // Note the constant GSDATAOTHERPATH,​ which points to /​path/​to/​getsimple/​data/​other/​ // Note the constant GSDATAOTHERPATH,​ which points to /​path/​to/​getsimple/​data/​other/​
-$folder ​      ​= GSDATAOTHERPATH . '/'​ . $plugin_id . '/';​ +$folder ​       = GSDATAOTHERPATH . '/'​ . $plugin_id . '/';​ 
-$filename ​    ​= $folder . '​ua-data.txt';​ +$filename ​     = $folder . '​ua-data.txt';​ 
-$chmodMode ​   = 0755; +$chmod_mode ​   = 0755; 
-$folderExists ​= file_exists($folder) || mkdir($folder,​ $chmodMode);+$folder_exists ​= file_exists($folder) || mkdir($folder,​ $chmod_mode);
  
 // Save the file (assuming that the folder indeed exists) // Save the file (assuming that the folder indeed exists)
-if ($folderExists) {+if ($folder_exists) {
   file_put_contents($filename,​ $data);   file_put_contents($filename,​ $data);
 } }
plugins/creation.txt · Last modified: 2017/01/19 22:08 by lokothodida