My Custom Functions - Version 4.27

Version Description

  • The design of the message "Successful" is improved.
  • The design of the message "Error" is improved.
  • The "readme.txt" file is updated.
  • Some texts are updated.
  • Translation files are updated.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 My Custom Functions
Version 4.27
Comparing to
See all releases

Code changes from version 4.26 to 4.27

inc/css/admin.css CHANGED
@@ -556,6 +556,22 @@ td.help-text {
556
  #setting-error-settings_updated {
557
  display: none;
558
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
559
 
560
  /* Titles */
561
  .meta-box-sortabless .title label {
556
  #setting-error-settings_updated {
557
  display: none;
558
  }
559
+ #message.updated i {
560
+ padding-right: 5px;
561
+ color: green;
562
+ font-size: 1.5em;
563
+ vertical-align: middle;
564
+ }
565
+ #message.error i {
566
+ padding-right: 5px;
567
+ color: red;
568
+ font-size: 2.5em;
569
+ vertical-align: middle;
570
+ }
571
+ #message.error span {
572
+ display: inline-block;
573
+ vertical-align: middle;
574
+ }
575
 
576
  /* Titles */
577
  .meta-box-sortabless .title label {
inc/php/messages.php CHANGED
@@ -88,7 +88,7 @@ function spacexchimp_p001_successfull_message() {
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
- <p><?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P001_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
@@ -100,12 +100,16 @@ function spacexchimp_p001_successfull_message() {
100
  function spacexchimp_p001_parsing_error_message() {
101
 
102
  $error = get_option( SPACEXCHIMP_P001_SETTINGS . '_error' );
 
103
  if ( $error == '1' ) {
104
  ?>
105
  <div id="message" class="error">
106
  <p>
107
- <?php _e( 'Sorry, but your code causes a "Fatal error", so it is not applied!', SPACEXCHIMP_P001_TEXT ); ?><br/>
108
- <?php _e( 'Please, check the code and try again.', SPACEXCHIMP_P001_TEXT ); ?>
 
 
 
109
  </p>
110
  </div>
111
  <?php
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
+ <p><i class="fa fa-check" aria-hidden="true"></i> <?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P001_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
100
  function spacexchimp_p001_parsing_error_message() {
101
 
102
  $error = get_option( SPACEXCHIMP_P001_SETTINGS . '_error' );
103
+ //$error = '1'; // For testing purposes
104
  if ( $error == '1' ) {
105
  ?>
106
  <div id="message" class="error">
107
  <p>
108
+ <i class="fa fa-times" aria-hidden="true"></i>
109
+ <span>
110
+ <?php _e( 'Sorry, but your code causes a "Fatal error", so it is not applied!', SPACEXCHIMP_P001_TEXT ); ?><br/>
111
+ <?php _e( 'Please, check the code and try again.', SPACEXCHIMP_P001_TEXT ); ?>
112
+ </span>
113
  </p>
114
  </div>
115
  <?php
inc/php/page.php CHANGED
@@ -64,7 +64,7 @@ function spacexchimp_p001_render_submenu_page() {
64
  <div class="postbox">
65
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
66
  <div class="inside">
67
- <p><?php _e( 'To add your custom functions (PHP code) to your website, simply follow these steps:', $text ); ?></p>
68
  <ol class="custom-counter">
69
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
70
  <li><?php _e( 'Place your custom PHP code in the field.', $text ); ?><br><br>
@@ -150,7 +150,7 @@ function spacexchimp_p001_render_submenu_page() {
150
  }</code></pre>
151
  </div>
152
 
153
- <div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the text field?', $text ); ?></div>
154
  <div class="answer-5"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
155
 
156
  <div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', $text ); ?></div>
@@ -180,7 +180,7 @@ function spacexchimp_p001_render_submenu_page() {
180
  <li><?php _e( 'Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code.', $text ); ?></li>
181
  <li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
182
  <li><?php _e( 'Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>.', $text ); ?></li>
183
- <li><?php _e( 'Edit/fix your custom code that you entered before the crash.', $text ); ?></li>
184
  <li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
185
  </ol>
186
  <?php _e( 'This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>.', $text ); ?><br><br>
64
  <div class="postbox">
65
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
66
  <div class="inside">
67
+ <p><?php _e( 'To add your custom PHP code to your website, simply follow these steps:', $text ); ?></p>
68
  <ol class="custom-counter">
69
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
70
  <li><?php _e( 'Place your custom PHP code in the field.', $text ); ?><br><br>
150
  }</code></pre>
151
  </div>
152
 
153
+ <div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?></div>
154
  <div class="answer-5"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
155
 
156
  <div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', $text ); ?></div>
180
  <li><?php _e( 'Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code.', $text ); ?></li>
181
  <li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
182
  <li><?php _e( 'Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>.', $text ); ?></li>
183
+ <li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
184
  <li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
185
  </ol>
186
  <?php _e( 'This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>.', $text ); ?><br><br>
inc/php/sidebar.php CHANGED
@@ -24,7 +24,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
- <p><?php _e( 'This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
+ <p><?php _e( 'This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
languages/my-custom-functions-de_DE.mo CHANGED
Binary file
languages/my-custom-functions-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -57,11 +57,11 @@ msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gu
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr "Anleitung"
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "Über"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
99
  msgstr "Anleitung"
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
406
  msgstr "Über"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions-es_ES.mo CHANGED
Binary file
languages/my-custom-functions-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -57,11 +57,11 @@ msgstr "Actualiza el complemento a la versión más reciente y todo estará bien
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr "Instrucciones de uso"
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "Acerca de"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
99
  msgstr "Instrucciones de uso"
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
406
  msgstr "Acerca de"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions-fr_FR.mo CHANGED
Binary file
languages/my-custom-functions-fr_FR.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
@@ -57,11 +57,11 @@ msgstr ""
57
  msgid "Custom code updated successfully."
58
  msgstr "Custom functions mis à jour avec succès."
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Désolé, mais votre code provoque une \"erreur fatale\" ; il n'est donc pas appliqué."
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr "Svp, vérifiez le code et réessayez."
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr ""
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "A propos"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Ajoutez facilement et en toute sécurité vos fonctions personnalisées (code PHP) au fichier functions.php directement depuis votre Panneau d'Administration Wordpress, sans passer par un éditeur externe. "
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
57
  msgid "Custom code updated successfully."
58
  msgstr "Custom functions mis à jour avec succès."
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Désolé, mais votre code provoque une \"erreur fatale\" ; il n'est donc pas appliqué."
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "Svp, vérifiez le code et réessayez."
67
 
99
  msgstr ""
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
406
  msgstr "A propos"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Ajoutez facilement et en toute sécurité vos fonctions personnalisées (code PHP) au fichier functions.php directement depuis votre Panneau d'Administration Wordpress, sans passer par un éditeur externe. "
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions-nl_NL.mo CHANGED
Binary file
languages/my-custom-functions-nl_NL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -57,11 +57,11 @@ msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
57
  msgid "Custom code updated successfully."
58
  msgstr "Aangepaste functies zijn geüpdated."
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet toegepast!"
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr "Controleer de code, en probeer het opnieuw."
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr "Gebruiksinstructies"
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr "Ja. Maar je moet het goed doen, zoals dit:"
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> &#10145; <code>PHP Inserter</code>."
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "Over"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Voeg eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toe via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
57
  msgid "Custom code updated successfully."
58
  msgstr "Aangepaste functies zijn geüpdated."
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet toegepast!"
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "Controleer de code, en probeer het opnieuw."
67
 
99
  msgstr "Gebruiksinstructies"
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
104
 
105
  #: inc/php/page.php:69
201
  msgstr "Ja. Maar je moet het goed doen, zoals dit:"
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
206
 
207
  #: inc/php/page.php:154
289
  msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> &#10145; <code>PHP Inserter</code>."
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
294
 
295
  #: inc/php/page.php:184
406
  msgstr "Over"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Voeg eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toe via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions-ru_RU.mo CHANGED
Binary file
languages/my-custom-functions-ru_RU.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -57,11 +57,11 @@ msgstr "Пожалуйста, обновите плагин до последн
57
  msgid "Custom code updated successfully."
58
  msgstr "Пользовательский код успешно обновлён."
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Извините, но ваш код вызывает \"Fatal error\", так что он не будет применён!"
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr "Инструкция по использованию"
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr "Чтобы добавить свои пользовательские функции (код PHP) на свой сайт, просто выполните следующие действия:"
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr "Да. Но вам нужно сделать это правильно, например так:"
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr "Сколько PHP-кода (символов) можно ввести в текстовом поле?"
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "О плагине"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr "Это плагин даёт вам возможность легко и безопасно добавлять ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Легко и безопасно добавляйте ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
57
  msgid "Custom code updated successfully."
58
  msgstr "Пользовательский код успешно обновлён."
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Извините, но ваш код вызывает \"Fatal error\", так что он не будет применён!"
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
67
 
99
  msgstr "Инструкция по использованию"
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr "Чтобы добавить свои пользовательские функции (код PHP) на свой сайт, просто выполните следующие действия:"
104
 
105
  #: inc/php/page.php:69
201
  msgstr "Да. Но вам нужно сделать это правильно, например так:"
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr "Сколько PHP-кода (символов) можно ввести в текстовом поле?"
206
 
207
  #: inc/php/page.php:154
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
406
  msgstr "О плагине"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr "Это плагин даёт вам возможность легко и безопасно добавлять ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr "Легко и безопасно добавляйте ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions-zh_TW.mo CHANGED
Binary file
languages/my-custom-functions-zh_TW.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:14+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Chinese (Taiwan)\n"
10
  "Language: zh_TW\n"
@@ -57,11 +57,11 @@ msgstr ""
57
  msgid "Custom code updated successfully."
58
  msgstr "自訂功能已成功更新"
59
 
60
- #: inc/php/messages.php:107
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套用它!"
63
 
64
- #: inc/php/messages.php:108
65
  msgid "Please, check the code and try again."
66
  msgstr "請重新檢查程式碼再試一次"
67
 
@@ -99,7 +99,7 @@ msgid "Usage Instructions"
99
  msgstr ""
100
 
101
  #: inc/php/page.php:67
102
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
@@ -201,7 +201,7 @@ msgid "Yes. But you need to do it properly, like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
- msgid "How much of PHP code (characters) I can enter in the text field?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
@@ -289,7 +289,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
- msgid "Edit/fix your custom code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
@@ -406,7 +406,7 @@ msgid "About"
406
  msgstr "關於"
407
 
408
  #: inc/php/sidebar.php:27
409
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
@@ -426,7 +426,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
426
  msgstr ""
427
 
428
  #. Description of the plugin/theme
429
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 18:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Chinese (Taiwan)\n"
10
  "Language: zh_TW\n"
57
  msgid "Custom code updated successfully."
58
  msgstr "自訂功能已成功更新"
59
 
60
+ #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套用它!"
63
 
64
+ #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "請重新檢查程式碼再試一次"
67
 
99
  msgstr ""
100
 
101
  #: inc/php/page.php:67
102
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
  #: inc/php/page.php:69
201
  msgstr ""
202
 
203
  #: inc/php/page.php:153
204
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:154
289
  msgstr ""
290
 
291
  #: inc/php/page.php:183
292
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
293
  msgstr ""
294
 
295
  #: inc/php/page.php:184
406
  msgstr "關於"
407
 
408
  #: inc/php/sidebar.php:27
409
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
410
  msgstr ""
411
 
412
  #: inc/php/sidebar.php:32
426
  msgstr ""
427
 
428
  #. Description of the plugin/theme
429
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
430
  msgstr ""
431
 
432
  #. Author of the plugin/theme
languages/my-custom-functions.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 2018-08-18 18:14+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -55,11 +55,11 @@ msgstr ""
55
  msgid "Custom code updated successfully."
56
  msgstr ""
57
 
58
- #: inc/php/messages.php:107
59
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
60
  msgstr ""
61
 
62
- #: inc/php/messages.php:108
63
  msgid "Please, check the code and try again."
64
  msgstr ""
65
 
@@ -97,7 +97,7 @@ msgid "Usage Instructions"
97
  msgstr ""
98
 
99
  #: inc/php/page.php:67
100
- msgid "To add your custom functions (PHP code) to your website, simply follow these steps:"
101
  msgstr ""
102
 
103
  #: inc/php/page.php:69
@@ -199,7 +199,7 @@ msgid "Yes. But you need to do it properly, like this:"
199
  msgstr ""
200
 
201
  #: inc/php/page.php:153
202
- msgid "How much of PHP code (characters) I can enter in the text field?"
203
  msgstr ""
204
 
205
  #: inc/php/page.php:154
@@ -287,7 +287,7 @@ msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP I
287
  msgstr ""
288
 
289
  #: inc/php/page.php:183
290
- msgid "Edit/fix your custom code that you entered before the crash."
291
  msgstr ""
292
 
293
  #: inc/php/page.php:184
@@ -404,7 +404,7 @@ msgid "About"
404
  msgstr ""
405
 
406
  #: inc/php/sidebar.php:27
407
- msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
408
  msgstr ""
409
 
410
  #: inc/php/sidebar.php:32
@@ -424,7 +424,7 @@ msgid "https://github.com/ArthurGareginyan/my-custom-functions"
424
  msgstr ""
425
 
426
  #. Description of the plugin/theme
427
- msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
428
  msgstr ""
429
 
430
  #. Author of the plugin/theme
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2018-09-12 18:19+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
55
  msgid "Custom code updated successfully."
56
  msgstr ""
57
 
58
+ #: inc/php/messages.php:110
59
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
60
  msgstr ""
61
 
62
+ #: inc/php/messages.php:111
63
  msgid "Please, check the code and try again."
64
  msgstr ""
65
 
97
  msgstr ""
98
 
99
  #: inc/php/page.php:67
100
+ msgid "To add your custom PHP code to your website, simply follow these steps:"
101
  msgstr ""
102
 
103
  #: inc/php/page.php:69
199
  msgstr ""
200
 
201
  #: inc/php/page.php:153
202
+ msgid "How much of PHP code (characters) I can enter in the code editor?"
203
  msgstr ""
204
 
205
  #: inc/php/page.php:154
287
  msgstr ""
288
 
289
  #: inc/php/page.php:183
290
+ msgid "Edit/fix your custom PHP code that you entered before the crash."
291
  msgstr ""
292
 
293
  #: inc/php/page.php:184
404
  msgstr ""
405
 
406
  #: inc/php/sidebar.php:27
407
+ msgid "This plugin allows you to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
408
  msgstr ""
409
 
410
  #: inc/php/sidebar.php:32
424
  msgstr ""
425
 
426
  #. Description of the plugin/theme
427
+ msgid "Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
428
  msgstr ""
429
 
430
  #. Author of the plugin/theme
my-custom-functions.php CHANGED
@@ -2,10 +2,10 @@
2
  /**
3
  * Plugin Name: My Custom Functions
4
  * Plugin URI: https://github.com/ArthurGareginyan/my-custom-functions
5
- * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.26
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
2
  /**
3
  * Plugin Name: My Custom Functions
4
  * Plugin URI: https://github.com/ArthurGareginyan/my-custom-functions
5
+ * Description: Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.27
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
readme.txt CHANGED
@@ -1,21 +1,21 @@
1
  === My Custom Functions ===
2
  Contributors: Arthur Gareginyan
3
- Tags: code, php, function, snippet, custom, execute, edit, editing, editor, functionality plugin, codemirror, syntax highlighting, syntaxhighlighting, syntax highlighter, syntaxhighlighter, syntax,
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
- Stable tag: 4.26
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor.
12
 
13
 
14
  == Description ==
15
 
16
- An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom functions (PHP code) for execution in the WordPress environment directly out of your WordPress Admin Area, without the need to have an external editor.
17
 
18
- This is a simple and perfect tool to use as your website's functionality plugin. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the functions.php file of your theme. Just add your custom PHP code in the field on the plugin page and this plugin will do the rest for you.
19
 
20
  The plugin works completely independently of the theme, so you can use it with any theme, and regardless of whether the theme does or does not have a functions.php file. The code you place on the plugin page will be entirely unaffected if you edit the contents of the theme’s functions.php file, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom PHP code would never be overwritten. Your custom PHP code will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
@@ -25,7 +25,7 @@ On the plugin page you find the code editor powered by CodeMirror. This code edi
25
 
26
  * Lightweight and fast
27
  * Secure code with using clear coding standards
28
- * Intuitive interface with many settings
29
  * Cross browser compatible (work smooth in any modern browser)
30
  * Compatible with all WordPress themes
31
  * RTL compatible (right to left)
@@ -33,9 +33,10 @@ On the plugin page you find the code editor powered by CodeMirror. This code edi
33
 
34
  **Key features include...**
35
 
 
36
  * Checks the entered code for fatal errors
37
- * Ability to temporarily disable all custom functions
38
  * Easy disable option for WSOD
 
39
  * Code syntax highlighting
40
  * Line numbering
41
  * Active line highlighting
@@ -46,15 +47,17 @@ On the plugin page you find the code editor powered by CodeMirror. This code edi
46
 
47
  * Ability to easily customize the code editor by selecting the desired settings
48
  * 56 themes for syntax highlighting
49
- * Unlimited number of fields
50
- * Automatic backup of all functions to a file
51
- * Ability to enable/disable the certain function
52
  * Ability to collapse/expand the certain fields with code
53
  * Well documented
54
 
55
  [Get the PRO version now!](https://www.spacexchimp.com/plugins/my-custom-functions-pro.html)
56
 
57
- **Coming soon:**
 
 
58
 
59
  **Translation**
60
 
@@ -136,7 +139,7 @@ A. Yes. But you need to do it properly, like this:
136
 
137
  }`
138
 
139
- = Q. How much of PHP code (characters) I can enter in the text field? =
140
  A. We don't limit the number of characters.
141
 
142
  = Q. On the plugin settings page, an error message appears. What could be wrong? =
@@ -166,7 +169,7 @@ A. This plugin has a built-in functions for checking the custom code for syntax
166
  3. Rename the file `START` to `STOP`. This will stop the execution of your custom code.
167
  4. Log in to Admin Area of your WordPress website.
168
  5. Go to the plugin settings page `Settings` -> `PHP Inserter`.
169
- 6. Edit/fix your custom code that you entered before the crash.
170
  7. Return to the plugin folder and rename the file `STOP` to `START` and you're done!
171
 
172
  This plugin stored you entered code in the database of your website. For getting your code, you also can go to the `Database` -> Table "`wp_options`" -> Option "`spacexchimp_p001_settings`" -> "`option_value`".
@@ -189,7 +192,7 @@ A. Yes, any contributions are very welcome! Please visit [our donation page](htt
189
  == Screenshots ==
190
 
191
  1. Plugin page.
192
- 2. Plugin page with custom code added.
193
  3. Success message.
194
  4. «Fatal error» message.
195
 
@@ -211,16 +214,25 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
211
  * The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
212
  * [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
213
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
 
214
 
215
  **Links**
216
 
217
  * [Developer website](https://www.spacexchimp.com)
218
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/my-custom-functions)
 
219
  * [Premium Version](https://www.spacexchimp.com/plugins/my-custom-functions-pro.html)
220
 
221
 
222
  == Changelog ==
223
 
 
 
 
 
 
 
 
224
  = 4.26 =
225
  * The function '_prepare' is improved.
226
  * The function '_duplicates' is improved.
1
  === My Custom Functions ===
2
  Contributors: Arthur Gareginyan
3
+ Tags: inject code, inject function, inject snippet, inject php, insert code, insert function, insert snippet, insert php, execute code, execute function, execute snippet, execute php, inject custom code, inject custom function, inject custom snippet, inject custom php, insert custom code, insert custom function, insert custom snippet, insert custom php, execute custom code, execute custom function, execute custom snippet, execute custom php, code, function, snippet, php, functionality plugin
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
+ Stable tag: 4.27
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ Easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
12
 
13
 
14
  == Description ==
15
 
16
+ An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
17
 
18
+ This is a simple and perfect tool to use as your website's functionality plugin. This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the functions.php file of your theme or any of your plugin files for to add custom PHP code. Just add your custom PHP code in the field on the plugin page and this plugin will do the rest for you. It will automatically add your PHP code to your website, without changing any of your theme files and without slowing down your website.
19
 
20
  The plugin works completely independently of the theme, so you can use it with any theme, and regardless of whether the theme does or does not have a functions.php file. The code you place on the plugin page will be entirely unaffected if you edit the contents of the theme’s functions.php file, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom PHP code would never be overwritten. Your custom PHP code will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
25
 
26
  * Lightweight and fast
27
  * Secure code with using clear coding standards
28
+ * Intuitive interface
29
  * Cross browser compatible (work smooth in any modern browser)
30
  * Compatible with all WordPress themes
31
  * RTL compatible (right to left)
33
 
34
  **Key features include...**
35
 
36
+ * Insert custom PHP code into the site
37
  * Checks the entered code for fatal errors
 
38
  * Easy disable option for WSOD
39
+ * Ability to temporarily disable all custom PHP code
40
  * Code syntax highlighting
41
  * Line numbering
42
  * Active line highlighting
47
 
48
  * Ability to easily customize the code editor by selecting the desired settings
49
  * 56 themes for syntax highlighting
50
+ * Unlimited number of fields for functions
51
+ * Automatic backup of all functions to a downloadable text file
52
+ * Separate activation and deactivation of functions
53
  * Ability to collapse/expand the certain fields with code
54
  * Well documented
55
 
56
  [Get the PRO version now!](https://www.spacexchimp.com/plugins/my-custom-functions-pro.html)
57
 
58
+ **Supported languages**
59
+
60
+ * PHP
61
 
62
  **Translation**
63
 
139
 
140
  }`
141
 
142
+ = Q. How much of PHP code (characters) I can enter in the code editor? =
143
  A. We don't limit the number of characters.
144
 
145
  = Q. On the plugin settings page, an error message appears. What could be wrong? =
169
  3. Rename the file `START` to `STOP`. This will stop the execution of your custom code.
170
  4. Log in to Admin Area of your WordPress website.
171
  5. Go to the plugin settings page `Settings` -> `PHP Inserter`.
172
+ 6. Edit/fix your custom PHP code that you entered before the crash.
173
  7. Return to the plugin folder and rename the file `STOP` to `START` and you're done!
174
 
175
  This plugin stored you entered code in the database of your website. For getting your code, you also can go to the `Database` -> Table "`wp_options`" -> Option "`spacexchimp_p001_settings`" -> "`option_value`".
192
  == Screenshots ==
193
 
194
  1. Plugin page.
195
+ 2. Plugin page with custom PHP code added.
196
  3. Success message.
197
  4. «Fatal error» message.
198
 
214
  * The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
215
  * [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
216
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
217
+ * [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
218
 
219
  **Links**
220
 
221
  * [Developer website](https://www.spacexchimp.com)
222
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/my-custom-functions)
223
+ * [Dedicated plugin page on WordPress.org](https://wordpress.org/plugins/my-custom-functions/)
224
  * [Premium Version](https://www.spacexchimp.com/plugins/my-custom-functions-pro.html)
225
 
226
 
227
  == Changelog ==
228
 
229
+ = 4.27 =
230
+ * The design of the message "Successful" is improved.
231
+ * The design of the message "Error" is improved.
232
+ * The "readme.txt" file is updated.
233
+ * Some texts are updated.
234
+ * Translation files are updated.
235
+
236
  = 4.26 =
237
  * The function '_prepare' is improved.
238
  * The function '_duplicates' is improved.