My Custom Functions - Version 4.38

Version Description

  • Mar 31, 2019 =
  • Framework updated: Code formatting improved.
  • Framework updated: Code commenting improved.
  • Framework updated: The change log design is improved.
Download this release

Release Info

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

Code changes from version 4.37 to 4.38

inc/php/core.php CHANGED
@@ -63,7 +63,7 @@ function spacexchimp_p001_plugin_row_meta( $links, $file ) {
63
 
64
  $url_upgrade = "https://www.spacexchimp.com/plugins/my-custom-functions-pro.html";
65
  $text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
66
- $link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . $text_upgrade . '</a>';
67
 
68
  $new_links = array(
69
  'donate' => $link_donate,
63
 
64
  $url_upgrade = "https://www.spacexchimp.com/plugins/my-custom-functions-pro.html";
65
  $text_upgrade = __( 'Upgrade to PRO', $plugin['text'] );
66
+ $link_upgrade = '<a href="' . $url_upgrade . '" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . $text_upgrade . '</a>';
67
 
68
  $new_links = array(
69
  'donate' => $link_donate,
inc/php/page.php CHANGED
@@ -48,38 +48,39 @@ function spacexchimp_p001_render_submenu_page() {
48
  </ul>
49
  <!-- END-TABS NAVIGATION MENU -->
50
 
51
- <!-- TAB 1 -->
52
  <div class="tab-page fade active in" id="tab-core">
 
53
  <!-- INCLUDE SIDEBAR -->
54
  <?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
55
- <!-- INCLUDE SETTINGS -->
56
  <?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
57
  </div>
58
- <!-- END-TAB 1 -->
59
 
60
- <!-- TAB 2 -->
61
  <div class="tab-page fade" id="tab-usage">
62
  <?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
63
  </div>
64
- <!-- END-TAB 2 -->
65
 
66
- <!-- TAB 3 -->
67
  <div class="tab-page fade" id="tab-faq">
68
  <?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
69
  </div>
70
- <!-- END-TAB 3 -->
71
 
72
- <!-- TAB 4 -->
73
  <div class="tab-page fade" id="tab-support">
74
  <?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
75
  </div>
76
- <!-- END-TAB 4 -->
77
 
78
- <!-- TAB 5 -->
79
  <div class="tab-page fade" id="tab-store">
80
  <div class="include-tab-store"></div>
81
  </div>
82
- <!-- END-TAB 5 -->
83
 
84
  </div>
85
 
48
  </ul>
49
  <!-- END-TABS NAVIGATION MENU -->
50
 
51
+ <!-- TAB SETTINGS -->
52
  <div class="tab-page fade active in" id="tab-core">
53
+
54
  <!-- INCLUDE SIDEBAR -->
55
  <?php require_once( $plugin['path'] . 'inc/php/sidebar.php' ); ?>
56
+
57
  <?php require_once( $plugin['path'] . 'inc/php/tabs/settings.php' ); ?>
58
  </div>
59
+ <!-- END-TAB SETTINGS -->
60
 
61
+ <!-- TAB USAGE -->
62
  <div class="tab-page fade" id="tab-usage">
63
  <?php require_once( $plugin['path'] . 'inc/php/tabs/usage.php' ); ?>
64
  </div>
65
+ <!-- END-TAB USAGE -->
66
 
67
+ <!-- TAB FAQ -->
68
  <div class="tab-page fade" id="tab-faq">
69
  <?php require_once( $plugin['path'] . 'inc/php/tabs/faq.php' ); ?>
70
  </div>
71
+ <!-- END-TAB FAQ -->
72
 
73
+ <!-- TAB SUPPORT -->
74
  <div class="tab-page fade" id="tab-support">
75
  <?php require_once( $plugin['path'] . 'inc/php/tabs/support.php' ); ?>
76
  </div>
77
+ <!-- END-TAB SUPPORT -->
78
 
79
+ <!-- TAB STORE -->
80
  <div class="tab-page fade" id="tab-store">
81
  <div class="include-tab-store"></div>
82
  </div>
83
+ <!-- END-TAB STORE -->
84
 
85
  </div>
86
 
inc/php/sidebar.php CHANGED
@@ -12,6 +12,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
12
  <div class="inner-sidebar">
13
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
14
 
 
15
  <div class="postbox banner">
16
  <h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
17
  <div class="inside">
@@ -20,7 +21,9 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
20
  </a>
21
  </div>
22
  </div>
 
23
 
 
24
  <div class="postbox banner">
25
  <div class="inside">
26
  <a href="https://www.spacexchimp.com/plugins/my-custom-functions-pro.html" target="_blank">
@@ -28,21 +31,27 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
28
  </a>
29
  </div>
30
  </div>
 
31
 
 
32
  <div class="postbox about">
33
  <h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
34
  <div class="inside">
35
  <p><?php _e( 'This plugin 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.', $plugin['text'] ); ?></p>
36
  </div>
37
  </div>
 
38
 
 
39
  <div class="postbox help">
40
  <h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
41
  <div class="inside">
42
  <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
43
  </div>
44
  </div>
 
45
 
 
46
  <div class="postbox support">
47
  <h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
48
  <div class="inside">
@@ -56,6 +65,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
56
  <p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
57
  </div>
58
  </div>
 
59
 
60
  </div>
61
  </div>
12
  <div class="inner-sidebar">
13
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
14
 
15
+ <!-- SPACEXCHIMP -->
16
  <div class="postbox banner">
17
  <h3 class="title"><?php _e( 'We are «Space X-Chimp»', $plugin['text'] ); ?></h3>
18
  <div class="inside">
21
  </a>
22
  </div>
23
  </div>
24
+ <!-- END SPACEXCHIMP -->
25
 
26
+ <!-- UPGRADE -->
27
  <div class="postbox banner">
28
  <div class="inside">
29
  <a href="https://www.spacexchimp.com/plugins/my-custom-functions-pro.html" target="_blank">
31
  </a>
32
  </div>
33
  </div>
34
+ <!-- END UPGRADE -->
35
 
36
+ <!-- ABOUT -->
37
  <div class="postbox about">
38
  <h3 class="title"><?php _e( 'About', $plugin['text'] ); ?></h3>
39
  <div class="inside">
40
  <p><?php _e( 'This plugin 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.', $plugin['text'] ); ?></p>
41
  </div>
42
  </div>
43
+ <!-- END ABOUT -->
44
 
45
+ <!-- HELP -->
46
  <div class="postbox help">
47
  <h3 class="title"><?php _e( 'Help', $plugin['text'] ); ?></h3>
48
  <div class="inside">
49
  <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $plugin['text'] ); ?></p>
50
  </div>
51
  </div>
52
+ <!-- END HELP -->
53
 
54
+ <!-- SUPPORT -->
55
  <div class="postbox support">
56
  <h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
57
  <div class="inside">
65
  <p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
66
  </div>
67
  </div>
68
+ <!-- END SUPPORT -->
69
 
70
  </div>
71
  </div>
inc/php/tabs/settings.php CHANGED
@@ -48,8 +48,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
48
  </div>
49
  </div>
50
 
 
51
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
 
52
 
 
53
  <div class="postbox" id="support-addition">
54
  <h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
55
  <div class="inside">
@@ -63,6 +66,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
63
  <p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
64
  </div>
65
  </div>
 
66
 
67
  </form>
68
 
48
  </div>
49
  </div>
50
 
51
+ <!-- SUBMIT -->
52
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $plugin['text'] ); ?>">
53
+ <!-- END SUBMIT -->
54
 
55
+ <!-- SUPPORT -->
56
  <div class="postbox" id="support-addition">
57
  <h3 class="title"><?php _e( 'Support', $plugin['text'] ); ?></h3>
58
  <div class="inside">
66
  <p><?php _e( 'Thanks for your support!', $plugin['text'] ); ?></p>
67
  </div>
68
  </div>
69
+ <!-- END SUPPORT -->
70
 
71
  </form>
72
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -90,7 +90,7 @@ msgstr "Verwendung"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr "Unterstützung"
96
 
@@ -98,36 +98,36 @@ msgstr "Unterstützung"
98
  msgid "Store"
99
  msgstr "Geschäft"
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Wir sind «Space X-Chimp»"
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "Über"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  msgstr ""
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "Hilfe"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Spende mit PayPal"
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "Danke für Ihre Unterstützung!"
133
 
@@ -666,7 +666,7 @@ msgstr ""
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "Änderungen speichern"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr "Unterstützung"
96
 
98
  msgid "Store"
99
  msgstr "Geschäft"
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Wir sind «Space X-Chimp»"
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "Über"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  msgstr ""
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "Hilfe"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Spende mit PayPal"
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "Danke für Ihre Unterstützung!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "Änderungen speichern"
672
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -90,7 +90,7 @@ msgstr "Uso"
90
  msgid "F.A.Q."
91
  msgstr "Preguntas ?"
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr "Soporte"
96
 
@@ -98,36 +98,36 @@ msgstr "Soporte"
98
  msgid "Store"
99
  msgstr "Tienda"
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "Acerca de"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código PHP personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "Ayuda"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Donar con PayPal"
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "¡Gracias por tu apoyo!"
133
 
@@ -666,7 +666,7 @@ msgstr ""
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "Guardar cambios"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
90
  msgid "F.A.Q."
91
  msgstr "Preguntas ?"
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr "Soporte"
96
 
98
  msgid "Store"
99
  msgstr "Tienda"
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "Acerca de"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código PHP personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "Ayuda"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Donar con PayPal"
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "¡Gracias por tu apoyo!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "Guardar cambios"
672
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
@@ -90,7 +90,7 @@ msgstr "Utilisation"
90
  msgid "F.A.Q."
91
  msgstr "FAQ."
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr ""
96
 
@@ -98,36 +98,36 @@ msgstr ""
98
  msgid "Store"
99
  msgstr ""
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "A propos"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code PHP personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "Aide"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Faire un don avec PayPal"
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "Merci pour votre soutien!"
133
 
@@ -666,7 +666,7 @@ msgstr "N'EST PAS SAUVÉ!"
666
  msgid "Enter your PHP functions here"
667
  msgstr "Entrez votre fonction PHP ici"
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "Enregistrer les modifications"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
90
  msgid "F.A.Q."
91
  msgstr "FAQ."
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr ""
96
 
98
  msgid "Store"
99
  msgstr ""
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "A propos"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code PHP personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "Aide"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Faire un don avec PayPal"
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "Merci pour votre soutien!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr "Entrez votre fonction PHP ici"
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "Enregistrer les modifications"
672
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -90,7 +90,7 @@ msgstr "Gebruik"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr "Ondersteuning"
96
 
@@ -98,36 +98,36 @@ msgstr "Ondersteuning"
98
  msgid "Store"
99
  msgstr "Winkel"
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Wij zijn «Space X-Chimp»"
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "Over"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  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."
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "Helpen"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr ""
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Doneer via PayPal"
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "Bedankt voor uw steun!"
133
 
@@ -666,7 +666,7 @@ msgstr ""
666
  msgid "Enter your PHP functions here"
667
  msgstr "Voer hier uw PHP-functies in"
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "Wijzigingen opslaan"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr "Ondersteuning"
96
 
98
  msgid "Store"
99
  msgstr "Winkel"
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Wij zijn «Space X-Chimp»"
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "Over"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  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."
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "Helpen"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr ""
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Doneer via PayPal"
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "Bedankt voor uw steun!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr "Voer hier uw PHP-functies in"
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "Wijzigingen opslaan"
672
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -90,7 +90,7 @@ msgstr "Применение"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr "Поддержка"
96
 
@@ -98,36 +98,36 @@ msgstr "Поддержка"
98
  msgid "Store"
99
  msgstr "Магазин"
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Мы «Space X-Chimp»"
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "О плагине"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский PHP код, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "Помощь"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Пожертвовать через PayPal"
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "Спасибо за вашу поддержку!"
133
 
@@ -666,7 +666,7 @@ msgstr ""
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "Сохранить изменения"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr "Поддержка"
96
 
98
  msgid "Store"
99
  msgstr "Магазин"
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr "Мы «Space X-Chimp»"
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "О плагине"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский PHP код, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "Помощь"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr "Пожертвовать через PayPal"
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "Спасибо за вашу поддержку!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "Сохранить изменения"
672
 
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: 2019-03-23 04:29+0300\n"
7
- "PO-Revision-Date: 2019-03-23 04:29+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Chinese (Taiwan)\n"
10
  "Language: zh_TW\n"
@@ -90,7 +90,7 @@ msgstr ""
90
  msgid "F.A.Q."
91
  msgstr ""
92
 
93
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
94
  msgid "Support"
95
  msgstr ""
96
 
@@ -98,36 +98,36 @@ msgstr ""
98
  msgid "Store"
99
  msgstr ""
100
 
101
- #: inc/php/sidebar.php:16
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
- #: inc/php/sidebar.php:33
106
  msgid "About"
107
  msgstr "關於"
108
 
109
- #: inc/php/sidebar.php:35
110
  msgid "This plugin 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."
111
  msgstr ""
112
 
113
- #: inc/php/sidebar.php:40
114
  msgid "Help"
115
  msgstr "幫助"
116
 
117
- #: inc/php/sidebar.php:42
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr ""
120
 
121
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr ""
124
 
125
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr ""
129
 
130
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
131
  msgid "Thanks for your support!"
132
  msgstr "謝謝您的贊助!"
133
 
@@ -666,7 +666,7 @@ msgstr ""
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
- #: inc/php/tabs/settings.php:51
670
  msgid "Save changes"
671
  msgstr "儲存變更"
672
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:12+0300\n"
7
+ "PO-Revision-Date: 2019-03-31 16:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Chinese (Taiwan)\n"
10
  "Language: zh_TW\n"
90
  msgid "F.A.Q."
91
  msgstr ""
92
 
93
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
94
  msgid "Support"
95
  msgstr ""
96
 
98
  msgid "Store"
99
  msgstr ""
100
 
101
+ #: inc/php/sidebar.php:17
102
  msgid "We are «Space X-Chimp»"
103
  msgstr ""
104
 
105
+ #: inc/php/sidebar.php:38
106
  msgid "About"
107
  msgstr "關於"
108
 
109
+ #: inc/php/sidebar.php:40
110
  msgid "This plugin 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."
111
  msgstr ""
112
 
113
+ #: inc/php/sidebar.php:47
114
  msgid "Help"
115
  msgstr "幫助"
116
 
117
+ #: inc/php/sidebar.php:49
118
  msgid "If you have a question, please read the information in the FAQ section."
119
  msgstr ""
120
 
121
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
122
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
123
  msgstr ""
124
 
125
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
126
  #: inc/php/tabs/support.php:21
127
  msgid "Donate with PayPal"
128
  msgstr ""
129
 
130
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
131
  msgid "Thanks for your support!"
132
  msgstr "謝謝您的贊助!"
133
 
666
  msgid "Enter your PHP functions here"
667
  msgstr ""
668
 
669
+ #: inc/php/tabs/settings.php:52
670
  msgid "Save changes"
671
  msgstr "儲存變更"
672
 
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: 2019-03-23 04:29+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -88,7 +88,7 @@ msgstr ""
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
- #: inc/php/page.php:46 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
92
  msgid "Support"
93
  msgstr ""
94
 
@@ -96,36 +96,36 @@ msgstr ""
96
  msgid "Store"
97
  msgstr ""
98
 
99
- #: inc/php/sidebar.php:16
100
  msgid "We are «Space X-Chimp»"
101
  msgstr ""
102
 
103
- #: inc/php/sidebar.php:33
104
  msgid "About"
105
  msgstr ""
106
 
107
- #: inc/php/sidebar.php:35
108
  msgid "This plugin 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."
109
  msgstr ""
110
 
111
- #: inc/php/sidebar.php:40
112
  msgid "Help"
113
  msgstr ""
114
 
115
- #: inc/php/sidebar.php:42
116
  msgid "If you have a question, please read the information in the FAQ section."
117
  msgstr ""
118
 
119
- #: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
120
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
121
  msgstr ""
122
 
123
- #: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
124
  #: inc/php/tabs/support.php:21
125
  msgid "Donate with PayPal"
126
  msgstr ""
127
 
128
- #: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
129
  msgid "Thanks for your support!"
130
  msgstr ""
131
 
@@ -664,7 +664,7 @@ msgstr ""
664
  msgid "Enter your PHP functions here"
665
  msgstr ""
666
 
667
- #: inc/php/tabs/settings.php:51
668
  msgid "Save changes"
669
  msgstr ""
670
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-03-31 16:13+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
+ #: inc/php/page.php:46 inc/php/sidebar.php:56 inc/php/tabs/settings.php:57
92
  msgid "Support"
93
  msgstr ""
94
 
96
  msgid "Store"
97
  msgstr ""
98
 
99
+ #: inc/php/sidebar.php:17
100
  msgid "We are «Space X-Chimp»"
101
  msgstr ""
102
 
103
+ #: inc/php/sidebar.php:38
104
  msgid "About"
105
  msgstr ""
106
 
107
+ #: inc/php/sidebar.php:40
108
  msgid "This plugin 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."
109
  msgstr ""
110
 
111
+ #: inc/php/sidebar.php:47
112
  msgid "Help"
113
  msgstr ""
114
 
115
+ #: inc/php/sidebar.php:49
116
  msgid "If you have a question, please read the information in the FAQ section."
117
  msgstr ""
118
 
119
+ #: inc/php/sidebar.php:58 inc/php/tabs/settings.php:59
120
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
121
  msgstr ""
122
 
123
+ #: inc/php/sidebar.php:63 inc/php/tabs/settings.php:64
124
  #: inc/php/tabs/support.php:21
125
  msgid "Donate with PayPal"
126
  msgstr ""
127
 
128
+ #: inc/php/sidebar.php:65 inc/php/tabs/settings.php:66
129
  msgid "Thanks for your support!"
130
  msgstr ""
131
 
664
  msgid "Enter your PHP functions here"
665
  msgstr ""
666
 
667
+ #: inc/php/tabs/settings.php:52
668
  msgid "Save changes"
669
  msgstr ""
670
 
my-custom-functions.php CHANGED
@@ -5,7 +5,7 @@
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.37
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
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.38
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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: 5.1
7
- Stable tag: 4.37
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -252,7 +252,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
252
 
253
  == Changelog ==
254
 
255
- = 4.37 - 2019-03-24 =
 
 
 
 
 
256
  * Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
257
  * Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
258
  * Framework updated: The function "_plugin_row_meta" is improved.
@@ -260,19 +265,19 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
260
  * Framework updated: Code commenting improved.
261
  * Framework updated: All translation files are updated.
262
 
263
- = 4.36 - 2019-03-18 =
264
  * Improvement: Notification display system updated
265
  * Code commenting improved.
266
  * Style sheet for the back end is optimised.
267
 
268
- = 4.35 - 2019-03-01 =
269
  * Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
270
  * Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
271
 
272
- = 4.34 - 2019-02-24 =
273
  * Added French translation. (Thanks to Hervé Bouzin)
274
 
275
- = 4.33 =
276
  * The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
277
  * Content of the "F.A.Q." section updated.
278
  * Some texts are corrected or replaced with new ones.
@@ -283,7 +288,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
283
  * Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
284
  * The "humans.txt" file updated.
285
 
286
- = 4.32 =
287
  * Content of the "Usage" section updated.
288
  * Content of the "FAQ" section updated.
289
  * Code formatting in the "admin.js" file improved.
@@ -291,33 +296,33 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
291
  * The copyright date updated.
292
  * Translation files are updated.
293
 
294
- = 4.31 =
295
  * Improvement: Design of the plugin settings page is improved.
296
 
297
- = 4.30 =
298
  * Improvement: Design of the plugin settings page is improved.
299
  * Content of the "Usage Instructions" section updated.
300
  * Translation files are updated.
301
 
302
- = 4.29 =
303
  * Added new feature: If the changes in the code editor were made, but not saved, the message "NOT SAVED" is displayed.
304
  * Code commenting improved.
305
  * Translation files are updated.
306
 
307
- = 4.28 =
308
  * CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
309
  * The sidebar items are rearranged.
310
  * Some texts are updated.
311
  * Translation files are updated.
312
 
313
- = 4.27 =
314
  * The design of the message "Successful" is improved.
315
  * The design of the message "Error" is improved.
316
  * The "readme.txt" file is updated.
317
  * Some texts are updated.
318
  * Translation files are updated.
319
 
320
- = 4.26 =
321
  * The function '_prepare' is improved.
322
  * The function '_duplicates' is improved.
323
  * The function '_exec' is improved.
@@ -325,12 +330,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
325
  * Some texts are updated.
326
  * Translation files are updated.
327
 
328
- = 4.25 =
329
  * Some texts are updated.
330
  * Translation files are updated.
331
  * The translation into Russian has been corrected.
332
 
333
- = 4.24 =
334
  * Dutch translation added. (Thanks to Peter Leenders)
335
  * The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
336
  * The function '_load_scripts_admin' is improved.
@@ -338,78 +343,78 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
338
  * Some texts are updated.
339
  * All translation files are updated.
340
 
341
- = 4.23 =
342
  * The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
343
  * Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
344
  * All translation files are updated.
345
 
346
- = 4.22 =
347
  * Fixed: CodeMirror addon 'autorefresh.js' was added to one of the previous versions of the plugin, but it was not enabled.
348
 
349
- = 4.21 =
350
  * Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
351
  * Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
352
  * Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code field.
353
  * Texts on the plugin settings page are updated. Translations are updated.
354
 
355
- = 4.20 =
356
  * Updated the method of loading the addons of the CodeMirror library.
357
  * Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
358
  * Texts on the plugin settings page are updated. Translations are updated.
359
 
360
- = 4.19 =
361
  * CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
362
  * Updated the method of loading the modes and addons of the CodeMirror library.
363
 
364
- = 4.18 =
365
  * Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
366
  * The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
367
  * The upgrade banner has moved from an external source to the plugin folder.
368
  * Some texts are corrected.
369
 
370
- = 4.17 =
371
  * Added new constant "_FILE".
372
  * Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
373
 
374
- = 4.16 =
375
  * Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
376
  * CSS code in the file 'admin.css' is optimized.
377
 
378
- = 4.15 =
379
  * Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
380
  * Fixed information stored in the header of the translation files.
381
  * Translation files updated.
382
 
383
- = 4.14 =
384
  * Some texts updated, and typos corrected.
385
  * All translation files updated.
386
  * The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
387
  * The "humans.txt" file updated.
388
 
389
- = 4.13 =
390
  * Texts updated.
391
  * The year in the copyright text is updated.
392
  * The sidebar items are rearranged.
393
  * Translation files updated.
394
 
395
- = 4.12 =
396
  * The plugin is fully tested for compatibility with WordPress version 4.9.
397
  * CSS code improved.
398
 
399
- = 4.11 =
400
  * German translation added. (Thanks to Michael)
401
  * Spanish translation updated. (Thanks to Patricio Toledo)
402
  * Fixed an issue where the "Hello" message could not be hidden.
403
 
404
- = 4.10 =
405
  * At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
406
  * In the "_register_submenu_page" function, "$capability" changed from the 'edit_theme_options' to 'manage_options'.
407
 
408
- = 4.9 =
409
  * Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
410
  * Added branded footer text on the plugin's settings page.
411
 
412
- = 4.8 =
413
  * Added the top level menu item of the brand.
414
  * The submenu item of the plugin has moved to the menu item of the brand.
415
  * The menu item of the plugin is renamed.
@@ -419,7 +424,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
419
  * The "Support" tab renamed to the "Support Me".
420
  * The "Usage" tab renamed to the "Usage Instructions".
421
 
422
- = 4.7 =
423
  * Added Spanish translation. (Thanks Patricio Toledo)
424
  * The group name of the '_service_info' option renamed to '_settings_group_si'.
425
  * The 'admin.css' file improved.
@@ -430,7 +435,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
430
  * Prefixes of the PHP constants changed to ''SPACEXCHIMP_P001_.
431
  * Plugin data that saved in the database upgraded to version 0001.
432
 
433
- = 4.6 =
434
  * Russian translation updated.
435
  * The navigation of the tabs is rearranged.
436
  * Fixed an issue due to which the sidebar was not hiding on mobile devices.
@@ -440,7 +445,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
440
  * Banner moved from external source to plugin folder.
441
  * Code of PayPal button updated.
442
 
443
- = 4.5 =
444
  * Stylesheet in the admin.css file improved.
445
  * The '!important' declarations in the admin.css file removed.
446
  * Code formatting in the admin.js file improved.
@@ -450,11 +455,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
450
  * The 'Family' page tab renamed to 'Store'.
451
  * Added ad banner of my store website.
452
 
453
- = 4.4.1 =
454
  * The HTTPS mixed content issue fixed by changing all links to HTTPS.
455
  * Content of the "FAQ" section updated.
456
 
457
- = 4.4 =
458
  * On the plugin settings page, text of buttons are corrected.
459
  * On the plugin settings page, the information about the plugin version number moved to header section.
460
  * Some mention of constants replaced with variables for easier access.
@@ -463,7 +468,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
463
  * An SSL issue within the admin area fixed. The 'src=”http://' replaced with 'src=”//'.
464
  * Added load of the jQuery library on the plugin settings page.
465
 
466
- = 4.3 =
467
  * To the plugin settings page added information about the plugin version number.
468
  * The "Tested up to:" comment changed to 4.8 after full testing process.
469
  * The "version.php" file renamed to "versioning.php".
@@ -472,7 +477,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
472
  * Content of the FAQ tab updated.
473
  * Values of the variables on the settings page are improved.
474
 
475
- = 4.2 =
476
  * Compatibility with PHP version 5.2 improved.
477
  * PHP shorthands improved.
478
  * Added function for generating the plugin constants.
@@ -483,7 +488,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
483
  = 4.1.1 =
484
  * Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
485
 
486
- = 4.1 =
487
  * Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
488
  * Value of the "_VERSION" constant replaced with information from the plugin header data.
489
  * All references to the plugin name, slug, prefix are replaced with constants.
@@ -491,11 +496,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
491
  * Code formatting improved.
492
  * F.A.Q. section updated.
493
 
494
- = 4.0.1 =
495
  * Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
496
  * Contents of the F.A.Q. tab updated.
497
 
498
- = 4.0 =
499
  * The design of the plugin settings page is completely redone.
500
  * Added additional donate link to the "Plugins" page.
501
  * The 'Using' section renamed to 'Usage'.
@@ -526,45 +531,45 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
526
  * The POT file updated.
527
  * Translations updated.
528
 
529
- = 3.5 =
530
  * Added French translation. (Thanks Theophil Bethel)
531
  * Image of the donate button changed.
532
 
533
- = 3.4.1 =
534
  * Translations updated.
535
  * Readme for translations updated.
536
  * Link of banner image updated.
537
 
538
- = 3.4 =
539
  * Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
540
 
541
- = 3.3 =
542
  * User's PHP code displayed on settings page are escaped for output by `htmlentities()` instead of `esc_attr()` for prevent converting characters to HTML entities.
543
  * Added global constant for plugin text-domain.
544
  * Russian translation improved.
545
 
546
- = 3.2 =
547
  * Added option for easy disable the custom code for cases of WSOD.
548
  * Style sheet of settings page improved.
549
  * On the settings page added an advertisement about the PRO version of this plugin.
550
  * The Readme.txt file improved.
551
  * Added the Readme.txt file for translation contribution.
552
 
553
- = 3.1 =
554
  * Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
555
  * Added constant for storing the plugin version number.
556
 
557
- = 3.0 =
558
  * The structure of files changed.
559
  * Style sheet of settings page improved and better commented.
560
  * JS code improved.
561
  * The "thanks.png" image removed.
562
  * POT file updated.
563
 
564
- = 2.5.1 =
565
  * The update_option() returned into _duplicates function.
566
 
567
- = 2.5 =
568
  * Added active-line add-on to CodeMirror.
569
  * Extra update_option() removed from the _duplicates function.
570
  * The _exec function optimized.
@@ -573,11 +578,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
573
  * The styles.css file better commented.
574
  * The _enqueue_codemirror_scripts function renamed to mcfunctions_load_scripts.
575
 
576
- = 2.4 =
577
  * Added a toggle for temporarily disable the custom functions.
578
  * Functions _prepare, _duplicates, and _exec optimized.
579
 
580
- = 2.3 =
581
  * Added function to check for duplicate function names. Compares the names of all functions (internal, user). The _duplicates function added.
582
  * Added function of automatic remove the "successful" message after 3 seconds.
583
  * Removed the default message about successful saving.
@@ -585,18 +590,18 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
585
  * File js-functions.js renamed to functions.js.
586
  * Removed my personal ad about freelance.
587
 
588
- = 2.2 =
589
  * Added Chinese (Taiwan) translation. (Thanks Gordon Yu)
590
  * Text domain changed to "my-custom-functions".
591
  * Added compatibility with the translate.wordpress.org.
592
 
593
- = 2.1 =
594
  * In the page.php, on the line 21, fixed typo.
595
  * Removed extra rules in style.css file.
596
  * All images are moved to the directory "images".
597
  * Image "btn_donateCC_LG.gif" is now located in the "images" directory.
598
 
599
- = 2.0 =
600
  * New design of settings page (new layout).
601
  * Constants variables added.
602
  * editor.js deleted.
@@ -608,37 +613,37 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
608
  * .pot file updated.
609
  * Russian translation updated.
610
 
611
- = 1.9 =
612
  * Authors URI changed.
613
  * Donate link changed.
614
  * Localization improved.
615
  * .pot file updated.
616
  * Russian translation updated.
617
 
618
- = 1.8 =
619
  * The mode of CodeMirror editor changed from 'application/x-httpd-php' (HTML+PHP) to 'text/x-php' (PHP).
620
  * Placeholder of <textarea> changed to "/* Enter Your Custom Functions Here */".
621
  * Removed more unused do_action() from page.php file.
622
 
623
- = 1.7 =
624
  * The stylesheet of plugin page moved to separate file.
625
  * The javascript from page.php moved to separate file.
626
  * Textdomain changed to "mcfunctions".
627
  * Changed the style of title in plugin page.
628
  * The LICENSE file renamed to LICENSE.txt
629
 
630
- = 1.6 =
631
  * Fixed the issue due to which nothing appears below line 26 until you click below that line.
632
  * Added "register_setting" for error option.
633
  * Corrected comments to source code.
634
 
635
- = 1.5 =
636
  * CodeMirror scripts are combined and minified.
637
 
638
- = 1.4 =
639
  * Fixed the issue due to which the alert message was appearing after installation.
640
 
641
- = 1.3 =
642
  * .pot file included.
643
  * Minor fixes.
644
 
@@ -656,10 +661,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
656
  = 0.3 =
657
  * Release candidate.
658
 
659
- = 0.2 =
660
  * Beta version.
661
 
662
- = 0.1 =
663
  * Alpha version.
664
 
665
 
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: 5.2
7
+ Stable tag: 4.38
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
252
 
253
  == Changelog ==
254
 
255
+ = 4.38 - Mar 31, 2019 =
256
+ * Framework updated: Code formatting improved.
257
+ * Framework updated: Code commenting improved.
258
+ * Framework updated: The change log design is improved.
259
+
260
+ = 4.37 - Mar 24, 2019 =
261
  * Framework updated: Added function "_plugin", which returns an array with the contents of plugin constants. The mention of plugin constants is replaced by the use of the function "_plugin".
262
  * Framework updated: The functions "_settings_link" and "_upgrade_link" are combined and improved.
263
  * Framework updated: The function "_plugin_row_meta" is improved.
265
  * Framework updated: Code commenting improved.
266
  * Framework updated: All translation files are updated.
267
 
268
+ = 4.36 - Mar 18, 2019 =
269
  * Improvement: Notification display system updated
270
  * Code commenting improved.
271
  * Style sheet for the back end is optimised.
272
 
273
+ = 4.35 - Mar 1, 2019 =
274
  * Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
275
  * Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
276
 
277
+ = 4.34 - Feb 24, 2019 =
278
  * Added French translation. (Thanks to Hervé Bouzin)
279
 
280
+ = 4.33 - Feb 21, 2019 =
281
  * The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
282
  * Content of the "F.A.Q." section updated.
283
  * Some texts are corrected or replaced with new ones.
288
  * Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
289
  * The "humans.txt" file updated.
290
 
291
+ = 4.32 - Jan 11, 2019 =
292
  * Content of the "Usage" section updated.
293
  * Content of the "FAQ" section updated.
294
  * Code formatting in the "admin.js" file improved.
296
  * The copyright date updated.
297
  * Translation files are updated.
298
 
299
+ = 4.31 - Nov 2, 2018 =
300
  * Improvement: Design of the plugin settings page is improved.
301
 
302
+ = 4.30 - Oct 23, 2018 =
303
  * Improvement: Design of the plugin settings page is improved.
304
  * Content of the "Usage Instructions" section updated.
305
  * Translation files are updated.
306
 
307
+ = 4.29 - Oct 8, 2018 =
308
  * Added new feature: If the changes in the code editor were made, but not saved, the message "NOT SAVED" is displayed.
309
  * Code commenting improved.
310
  * Translation files are updated.
311
 
312
+ = 4.28 - Sep 22, 2018 =
313
  * CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
314
  * The sidebar items are rearranged.
315
  * Some texts are updated.
316
  * Translation files are updated.
317
 
318
+ = 4.27 - Sep 12, 2018 =
319
  * The design of the message "Successful" is improved.
320
  * The design of the message "Error" is improved.
321
  * The "readme.txt" file is updated.
322
  * Some texts are updated.
323
  * Translation files are updated.
324
 
325
+ = 4.26 - Aug 19, 2018 =
326
  * The function '_prepare' is improved.
327
  * The function '_duplicates' is improved.
328
  * The function '_exec' is improved.
330
  * Some texts are updated.
331
  * Translation files are updated.
332
 
333
+ = 4.25 - Aug 7, 2018 =
334
  * Some texts are updated.
335
  * Translation files are updated.
336
  * The translation into Russian has been corrected.
337
 
338
+ = 4.24 - Jul 24, 2018 =
339
  * Dutch translation added. (Thanks to Peter Leenders)
340
  * The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
341
  * The function '_load_scripts_admin' is improved.
343
  * Some texts are updated.
344
  * All translation files are updated.
345
 
346
+ = 4.23 - Jul 13, 2018 =
347
  * The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
348
  * Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
349
  * All translation files are updated.
350
 
351
+ = 4.22 - Jul 1, 2018 =
352
  * Fixed: CodeMirror addon 'autorefresh.js' was added to one of the previous versions of the plugin, but it was not enabled.
353
 
354
+ = 4.21 - Jun 30, 2018 =
355
  * Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
356
  * Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
357
  * Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code field.
358
  * Texts on the plugin settings page are updated. Translations are updated.
359
 
360
+ = 4.20 - Jun 26, 2018 =
361
  * Updated the method of loading the addons of the CodeMirror library.
362
  * Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
363
  * Texts on the plugin settings page are updated. Translations are updated.
364
 
365
+ = 4.19 - Jun 12, 2018 =
366
  * CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
367
  * Updated the method of loading the modes and addons of the CodeMirror library.
368
 
369
+ = 4.18 - Jun 4, 2018 =
370
  * Fixed a bug due to which the plugin data that stored in the database to not be deleted during the uninstallation of the plugin.
371
  * The contents of the file 'uninstall.php' is moved to the file 'core.php'. The file 'uninstall.php' is deleted.
372
  * The upgrade banner has moved from an external source to the plugin folder.
373
  * Some texts are corrected.
374
 
375
+ = 4.17 - May 20, 2018 =
376
  * Added new constant "_FILE".
377
  * Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
378
 
379
+ = 4.16 - May 6, 2018 =
380
  * Added auto-versioning of the CSS and JavaScript files to avoid cache issues.
381
  * CSS code in the file 'admin.css' is optimized.
382
 
383
+ = 4.15 - Apr 25, 2018 =
384
  * Fixed the link "Settings", located in the plugin's meta row on the "Plugins" page. The suffix ".php" was deleted.
385
  * Fixed information stored in the header of the translation files.
386
  * Translation files updated.
387
 
388
+ = 4.14 - Apr 20, 2018 =
389
  * Some texts updated, and typos corrected.
390
  * All translation files updated.
391
  * The information about the author of the plugin (including name, links, copyright, etc.) was changed due to the fact that the plugin became the property of SpaceXChimp.
392
  * The "humans.txt" file updated.
393
 
394
+ = 4.13 - Jan 22, 2018 =
395
  * Texts updated.
396
  * The year in the copyright text is updated.
397
  * The sidebar items are rearranged.
398
  * Translation files updated.
399
 
400
+ = 4.12 - Nov 13, 2017 =
401
  * The plugin is fully tested for compatibility with WordPress version 4.9.
402
  * CSS code improved.
403
 
404
+ = 4.11 - Oct 28, 2017 =
405
  * German translation added. (Thanks to Michael)
406
  * Spanish translation updated. (Thanks to Patricio Toledo)
407
  * Fixed an issue where the "Hello" message could not be hidden.
408
 
409
+ = 4.10 - Sep 23, 2017 =
410
  * At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
411
  * In the "_register_submenu_page" function, "$capability" changed from the 'edit_theme_options' to 'manage_options'.
412
 
413
+ = 4.9 - Sep 19, 2017 =
414
  * Fixed the issue due to which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
415
  * Added branded footer text on the plugin's settings page.
416
 
417
+ = 4.8 - Sep 15, 2017 =
418
  * Added the top level menu item of the brand.
419
  * The submenu item of the plugin has moved to the menu item of the brand.
420
  * The menu item of the plugin is renamed.
424
  * The "Support" tab renamed to the "Support Me".
425
  * The "Usage" tab renamed to the "Usage Instructions".
426
 
427
+ = 4.7 - Sep 8, 2017 =
428
  * Added Spanish translation. (Thanks Patricio Toledo)
429
  * The group name of the '_service_info' option renamed to '_settings_group_si'.
430
  * The 'admin.css' file improved.
435
  * Prefixes of the PHP constants changed to ''SPACEXCHIMP_P001_.
436
  * Plugin data that saved in the database upgraded to version 0001.
437
 
438
+ = 4.6 - Aug 10, 2017 =
439
  * Russian translation updated.
440
  * The navigation of the tabs is rearranged.
441
  * Fixed an issue due to which the sidebar was not hiding on mobile devices.
445
  * Banner moved from external source to plugin folder.
446
  * Code of PayPal button updated.
447
 
448
+ = 4.5 - Aug 8, 2017 =
449
  * Stylesheet in the admin.css file improved.
450
  * The '!important' declarations in the admin.css file removed.
451
  * Code formatting in the admin.js file improved.
455
  * The 'Family' page tab renamed to 'Store'.
456
  * Added ad banner of my store website.
457
 
458
+ = 4.4.1 - Jun 21, 2017 =
459
  * The HTTPS mixed content issue fixed by changing all links to HTTPS.
460
  * Content of the "FAQ" section updated.
461
 
462
+ = 4.4 - Jun 16, 2017 =
463
  * On the plugin settings page, text of buttons are corrected.
464
  * On the plugin settings page, the information about the plugin version number moved to header section.
465
  * Some mention of constants replaced with variables for easier access.
468
  * An SSL issue within the admin area fixed. The 'src=”http://' replaced with 'src=”//'.
469
  * Added load of the jQuery library on the plugin settings page.
470
 
471
+ = 4.3 - Jun 4, 2017 =
472
  * To the plugin settings page added information about the plugin version number.
473
  * The "Tested up to:" comment changed to 4.8 after full testing process.
474
  * The "version.php" file renamed to "versioning.php".
477
  * Content of the FAQ tab updated.
478
  * Values of the variables on the settings page are improved.
479
 
480
+ = 4.2 - May 26, 2017 =
481
  * Compatibility with PHP version 5.2 improved.
482
  * PHP shorthands improved.
483
  * Added function for generating the plugin constants.
488
  = 4.1.1 =
489
  * Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
490
 
491
+ = 4.1 - May 24, 2017 =
492
  * Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
493
  * Value of the "_VERSION" constant replaced with information from the plugin header data.
494
  * All references to the plugin name, slug, prefix are replaced with constants.
496
  * Code formatting improved.
497
  * F.A.Q. section updated.
498
 
499
+ = 4.0.1 - May 12, 2017 =
500
  * Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
501
  * Contents of the F.A.Q. tab updated.
502
 
503
+ = 4.0 - May 8, 2017 =
504
  * The design of the plugin settings page is completely redone.
505
  * Added additional donate link to the "Plugins" page.
506
  * The 'Using' section renamed to 'Usage'.
531
  * The POT file updated.
532
  * Translations updated.
533
 
534
+ = 3.5 - Nov 20, 2016 =
535
  * Added French translation. (Thanks Theophil Bethel)
536
  * Image of the donate button changed.
537
 
538
+ = 3.4.1 - Nov 8, 2016 =
539
  * Translations updated.
540
  * Readme for translations updated.
541
  * Link of banner image updated.
542
 
543
+ = 3.4 - Oct 28, 2016 =
544
  * Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
545
 
546
+ = 3.3 - Oct 1, 2016 =
547
  * User's PHP code displayed on settings page are escaped for output by `htmlentities()` instead of `esc_attr()` for prevent converting characters to HTML entities.
548
  * Added global constant for plugin text-domain.
549
  * Russian translation improved.
550
 
551
+ = 3.2 - Sep 15, 2016 =
552
  * Added option for easy disable the custom code for cases of WSOD.
553
  * Style sheet of settings page improved.
554
  * On the settings page added an advertisement about the PRO version of this plugin.
555
  * The Readme.txt file improved.
556
  * Added the Readme.txt file for translation contribution.
557
 
558
+ = 3.1 - Sep 3, 2016 =
559
  * Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
560
  * Added constant for storing the plugin version number.
561
 
562
+ = 3.0 - Aug 30, 2016 =
563
  * The structure of files changed.
564
  * Style sheet of settings page improved and better commented.
565
  * JS code improved.
566
  * The "thanks.png" image removed.
567
  * POT file updated.
568
 
569
+ = 2.5.1 - Aug 3, 2016 =
570
  * The update_option() returned into _duplicates function.
571
 
572
+ = 2.5 - Jul 26, 2016 =
573
  * Added active-line add-on to CodeMirror.
574
  * Extra update_option() removed from the _duplicates function.
575
  * The _exec function optimized.
578
  * The styles.css file better commented.
579
  * The _enqueue_codemirror_scripts function renamed to mcfunctions_load_scripts.
580
 
581
+ = 2.4 - Jul 21, 2016 =
582
  * Added a toggle for temporarily disable the custom functions.
583
  * Functions _prepare, _duplicates, and _exec optimized.
584
 
585
+ = 2.3 - Jul 20, 2016 =
586
  * Added function to check for duplicate function names. Compares the names of all functions (internal, user). The _duplicates function added.
587
  * Added function of automatic remove the "successful" message after 3 seconds.
588
  * Removed the default message about successful saving.
590
  * File js-functions.js renamed to functions.js.
591
  * Removed my personal ad about freelance.
592
 
593
+ = 2.2 - Apr 8, 2016 =
594
  * Added Chinese (Taiwan) translation. (Thanks Gordon Yu)
595
  * Text domain changed to "my-custom-functions".
596
  * Added compatibility with the translate.wordpress.org.
597
 
598
+ = 2.1 - Apr 7, 2016 =
599
  * In the page.php, on the line 21, fixed typo.
600
  * Removed extra rules in style.css file.
601
  * All images are moved to the directory "images".
602
  * Image "btn_donateCC_LG.gif" is now located in the "images" directory.
603
 
604
+ = 2.0 - Apr 3, 2016 =
605
  * New design of settings page (new layout).
606
  * Constants variables added.
607
  * editor.js deleted.
613
  * .pot file updated.
614
  * Russian translation updated.
615
 
616
+ = 1.9 - Feb 4, 2016 =
617
  * Authors URI changed.
618
  * Donate link changed.
619
  * Localization improved.
620
  * .pot file updated.
621
  * Russian translation updated.
622
 
623
+ = 1.8 - Dec 13, 2015 =
624
  * The mode of CodeMirror editor changed from 'application/x-httpd-php' (HTML+PHP) to 'text/x-php' (PHP).
625
  * Placeholder of <textarea> changed to "/* Enter Your Custom Functions Here */".
626
  * Removed more unused do_action() from page.php file.
627
 
628
+ = 1.7 - Nov 25, 2015 =
629
  * The stylesheet of plugin page moved to separate file.
630
  * The javascript from page.php moved to separate file.
631
  * Textdomain changed to "mcfunctions".
632
  * Changed the style of title in plugin page.
633
  * The LICENSE file renamed to LICENSE.txt
634
 
635
+ = 1.6 - Nov 25, 2015 =
636
  * Fixed the issue due to which nothing appears below line 26 until you click below that line.
637
  * Added "register_setting" for error option.
638
  * Corrected comments to source code.
639
 
640
+ = 1.5 - Nov 25, 2015 =
641
  * CodeMirror scripts are combined and minified.
642
 
643
+ = 1.4 - Nov 25, 2015 =
644
  * Fixed the issue due to which the alert message was appearing after installation.
645
 
646
+ = 1.3 - Nov 25, 2015 =
647
  * .pot file included.
648
  * Minor fixes.
649
 
661
  = 0.3 =
662
  * Release candidate.
663
 
664
+ = 0.2 =
665
  * Beta version.
666
 
667
+ = 0.1 =
668
  * Alpha version.
669
 
670