Child Theme Configurator - Version 1.2.3

Version Description

  • Replace PHP short tags with standard codes.
Download this release

Release Info

Developer lilaeamedia
Plugin Icon 128x128 Child Theme Configurator
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

child-theme-configurator.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined('ABSPATH')) exit;
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Create a Child Theme from any installed Theme. Each CSS selector, rule and value can then be searched, previewed and modified.
9
- Version: 1.2.2
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
6
  Plugin Name: Child Theme Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Create a Child Theme from any installed Theme. Each CSS selector, rule and value can then be searched, previewed and modified.
9
+ Version: 1.2.3
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
includes/class-ctc-css.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined('ABSPATH')) exit;
6
  Class: Child_Theme_Configurator_CSS
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Handles all CSS output, parsing, normalization
9
- Version: 1.2.2
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
@@ -43,7 +43,7 @@ class Child_Theme_Configurator_CSS {
43
 
44
  function __construct() {
45
  // scalars
46
- $this->version = '1.2.2';
47
  $this->querykey = 0;
48
  $this->selkey = 0;
49
  $this->qskey = 0;
6
  Class: Child_Theme_Configurator_CSS
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Handles all CSS output, parsing, normalization
9
+ Version: 1.2.3
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
43
 
44
  function __construct() {
45
  // scalars
46
+ $this->version = '1.2.3';
47
  $this->querykey = 0;
48
  $this->selkey = 0;
49
  $this->qskey = 0;
includes/class-ctc-ui.php CHANGED
@@ -5,7 +5,7 @@ if ( !defined('ABSPATH')) exit;
5
  Class: Child_Theme_Configurator_UI
6
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
7
  Description: Handles the plugin User Interface
8
- Version: 1.2.2
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
@@ -84,7 +84,7 @@ class Child_Theme_Configurator_UI {
84
  </div>
85
  <div class="ctc-input-cell">
86
  <input class="ctc-radio" id="ctc_child_type_new" name="ctc_child_type" type="radio" value="new"
87
- <? echo (!empty($hidechild) ? 'checked' : ''); ?>
88
  <?php echo $hidechild;?> />
89
  <label for="ctc_child_type_new">
90
  <?php _e('Create New Child Theme', 'chld_thm_cfg'); ?>
@@ -92,7 +92,7 @@ class Child_Theme_Configurator_UI {
92
  </div>
93
  <div class="ctc-input-cell">
94
  <input class="ctc-radio" id="ctc_child_type_existing" name="ctc_child_type" type="radio" value="existing"
95
- <? echo (empty($hidechild) ? 'checked' : ''); ?>
96
  <?php echo $hidechild; ?>/>
97
  &nbsp;
98
  <label for="ctc_child_type_existing" <?php echo $hidechild;?>>
@@ -119,7 +119,7 @@ class Child_Theme_Configurator_UI {
119
  </div>
120
  <div class="ctc-input-cell">
121
  <input class="ctc_text" id="ctc_child_name" name="ctc_child_name" type="text"
122
- value="<? echo esc_attr($css->get_property('child_name')); ?>" placeholder="theme name" autocomplete="off" />
123
  </div>
124
  </div>
125
  <div class="ctc-input-row clearfix" id="input_row_child_template">
@@ -130,7 +130,7 @@ class Child_Theme_Configurator_UI {
130
  </div>
131
  <div class="ctc-input-cell">
132
  <input class="ctc_text" id="ctc_child_author" name="ctc_child_author" type="text"
133
- value="<? echo esc_attr($css->get_property('author')); ?>" placeholder="author" autocomplete="off" />
134
  </div>
135
  </div>
136
  <div class="ctc-input-row clearfix" id="input_row_child_template">
@@ -141,7 +141,7 @@ class Child_Theme_Configurator_UI {
141
  </div>
142
  <div class="ctc-input-cell">
143
  <input class="ctc_text" id="ctc_child_version" name="ctc_child_version" type="text"
144
- value="<? echo esc_attr($css->get_property('version')); ?>" placeholder="version" autocomplete="off" />
145
  </div>
146
  </div>
147
  <div class="ctc-input-row clearfix" id="input_row_child_template">
5
  Class: Child_Theme_Configurator_UI
6
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
7
  Description: Handles the plugin User Interface
8
+ Version: 1.2.3
9
  Author: Lilaea Media
10
  Author URI: http://www.lilaeamedia.com/
11
  Text Domain: chld_thm_cfg
84
  </div>
85
  <div class="ctc-input-cell">
86
  <input class="ctc-radio" id="ctc_child_type_new" name="ctc_child_type" type="radio" value="new"
87
+ <?php echo (!empty($hidechild) ? 'checked' : ''); ?>
88
  <?php echo $hidechild;?> />
89
  <label for="ctc_child_type_new">
90
  <?php _e('Create New Child Theme', 'chld_thm_cfg'); ?>
92
  </div>
93
  <div class="ctc-input-cell">
94
  <input class="ctc-radio" id="ctc_child_type_existing" name="ctc_child_type" type="radio" value="existing"
95
+ <?php echo (empty($hidechild) ? 'checked' : ''); ?>
96
  <?php echo $hidechild; ?>/>
97
  &nbsp;
98
  <label for="ctc_child_type_existing" <?php echo $hidechild;?>>
119
  </div>
120
  <div class="ctc-input-cell">
121
  <input class="ctc_text" id="ctc_child_name" name="ctc_child_name" type="text"
122
+ value="<?php echo esc_attr($css->get_property('child_name')); ?>" placeholder="theme name" autocomplete="off" />
123
  </div>
124
  </div>
125
  <div class="ctc-input-row clearfix" id="input_row_child_template">
130
  </div>
131
  <div class="ctc-input-cell">
132
  <input class="ctc_text" id="ctc_child_author" name="ctc_child_author" type="text"
133
+ value="<?php echo esc_attr($css->get_property('author')); ?>" placeholder="author" autocomplete="off" />
134
  </div>
135
  </div>
136
  <div class="ctc-input-row clearfix" id="input_row_child_template">
141
  </div>
142
  <div class="ctc-input-cell">
143
  <input class="ctc_text" id="ctc_child_version" name="ctc_child_version" type="text"
144
+ value="<?php echo esc_attr($css->get_property('version')); ?>" placeholder="version" autocomplete="off" />
145
  </div>
146
  </div>
147
  <div class="ctc-input-row clearfix" id="input_row_child_template">
includes/class-ctc.php CHANGED
@@ -6,7 +6,7 @@ if ( !defined('ABSPATH')) exit;
6
  Class: Child_Theme_Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Main Controller Class
9
- Version: 1.2.2
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
@@ -18,7 +18,7 @@ require_once('class-ctc-ui.php');
18
  require_once('class-ctc-css.php');
19
  class Child_Theme_Configurator {
20
 
21
- var $version = '1.2.2';
22
  var $css;
23
  var $optionsName;
24
  var $menuName;
@@ -46,7 +46,7 @@ class Child_Theme_Configurator {
46
  $this->pluginURL = plugin_dir_url($file);
47
 
48
  // setup plugin hooks
49
- add_action('admin_menu', array(&$this, 'admin_menu'));
50
  add_action('admin_enqueue_scripts', array(&$this, 'enqueue_scripts'));
51
  add_action('wp_ajax_ctc_update', array(&$this, 'ajax_save_postdata' ));
52
  add_action('wp_ajax_ctc_query', array(&$this, 'ajax_query_css' ));
6
  Class: Child_Theme_Configurator
7
  Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
8
  Description: Main Controller Class
9
+ Version: 1.2.3
10
  Author: Lilaea Media
11
  Author URI: http://www.lilaeamedia.com/
12
  Text Domain: chld_thm_cfg
18
  require_once('class-ctc-css.php');
19
  class Child_Theme_Configurator {
20
 
21
+ var $version = '1.2.3';
22
  var $css;
23
  var $optionsName;
24
  var $menuName;
46
  $this->pluginURL = plugin_dir_url($file);
47
 
48
  // setup plugin hooks
49
+ add_action('admin_menu', array(&$this, 'admin_menu'));
50
  add_action('admin_enqueue_scripts', array(&$this, 'enqueue_scripts'));
51
  add_action('wp_ajax_ctc_update', array(&$this, 'ajax_save_postdata' ));
52
  add_action('wp_ajax_ctc_query', array(&$this, 'ajax_query_css' ));
js/chld-thm-cfg.js CHANGED
@@ -2,7 +2,7 @@
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
- * Version: 1.2.2
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
+ * Version: 1.2.3
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
js/chld-thm-cfg.min.js CHANGED
@@ -2,7 +2,7 @@
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
- * Version: 1.2.2
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
2
  * Script: chld-thm-cfg.js
3
  * Plugin URI: http://www.lilaeamedia.com/plugins/child-theme-configurator/
4
  * Description: Handles jQuery, AJAX and other UI
5
+ * Version: 1.2.3
6
  * Author: Lilaea Media
7
  * Author URI: http://www.lilaeamedia.com/
8
  * License: GPLv2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: child theme, custom theme, CSS, responsive design, CSS editor, theme generator
5
  Requires at least: 3.7
6
  Tested up to: 3.8
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,6 +125,9 @@ You can also create a secondary stylesheet that contains @font-face rules and im
125
 
126
  == Changelog ==
127
 
 
 
 
128
  = 1.2.2 =
129
  * New Features: You can now rename selectors in place from the Query/Selector panel. Made stylesheet backup optional. Bugs fixed: Incorrect parsing of background position when '0', fixed type error when background image url value is removed.
130
 
4
  Tags: child theme, custom theme, CSS, responsive design, CSS editor, theme generator
5
  Requires at least: 3.7
6
  Tested up to: 3.8
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
125
 
126
  == Changelog ==
127
 
128
+ = 1.2.3 =
129
+ * Replace PHP short tags with standard codes.
130
+
131
  = 1.2.2 =
132
  * New Features: You can now rename selectors in place from the Query/Selector panel. Made stylesheet backup optional. Bugs fixed: Incorrect parsing of background position when '0', fixed type error when background image url value is removed.
133