Changeset 1009258
- Timestamp:
- 10/17/2014 08:18:31 PM (11 years ago)
- Location:
- admin-branding/trunk
- Files:
-
- 3 added
- 4 deleted
- 1 edited
-
inc/redux-config.php (modified) (6 diffs)
-
lang/admin-branding-default (added)
-
lang/admin-branding-default.mo (added)
-
lang/admin-branding-default.pot (added)
-
lang/wpbizplugins-cahb-default.mo (deleted)
-
lang/wpbizplugins-cahb-default.pot (deleted)
-
lang/wpbizplugins-cahb-sv_SE.mo (deleted)
-
lang/wpbizplugins-cahb-sv_SE.po (deleted)
Legend:
- Unmodified
- Added
- Removed
-
admin-branding/trunk/inc/redux-config.php
r1001409 r1009258 111 111 112 112 //$sections = array(); 113 $sections[] = array(114 'title' => __('Section via hook', 'wpbizplugins-uac'),115 'desc' => __('<p class="description">This is a section created by adding a filter to the sections array. Can be used by child themes to add/remove sections from the options.</p>', 'wpbizplugins-uac'),113 /*$sections[] = array( 114 'title' => ''//__('Section via hook', 'wpbizplugins-uac'), 115 'desc' => ''//__('<p class="description">This is a section created by adding a filter to the sections array. Can be used by child themes to add/remove sections from the options.</p>', 'wpbizplugins-uac'), 116 116 'icon' => 'el-icon-paper-clip', 117 117 // Leave this as a blank section, no options just some intro text set above. 118 118 'fields' => array() 119 ); 119 );*/ 120 120 121 121 return $sections; … … 139 139 * */ 140 140 function change_defaults($defaults) { 141 $defaults['str_replace'] = 'Testing filter hook!';141 //$defaults['str_replace'] = 'Testing filter hook!'; 142 142 143 143 return $defaults; … … 690 690 'title' => __('Custom JS for admin section', 'wpbizplugins-uac'), 691 691 'subtitle' => __('Put your own custom JS/jQuery for the admin section here', 'wpbizplugins-uac'), 692 'desc' => '<strong>Remember:</strong> jQuery in the WordPress admin uses no-conflict, which means you call jQuery through the variable <strong>jQuery()</strong> and <u>not</u> $().',692 'desc' => __('<strong>Remember:</strong> jQuery in the WordPress admin uses no-conflict, which means you call jQuery through the variable <strong>jQuery()</strong> and <u>not</u> $().', 'wpbizplugins-uac' ), 693 693 'default' => '', 694 694 'mode' => 'javascript', … … 707 707 'id' => 'opt-import-export', 708 708 'type' => 'import_export', 709 'title' => 'Import Export',710 'subtitle' => 'Save and restore your menu options',709 'title' => __('Import Export', 'wpbizplugins-uac'), 710 'subtitle' => __('Save and restore your menu options', 'wpbizplugins-uac'), 711 711 'full_width' => false, 712 712 ), … … 758 758 // TYPICAL -> Change these values as you need/desire 759 759 'opt_name' => 'wpbizplugins_uac_options', // This is where your data is stored in the database and also becomes your global variable name. 760 'display_name' => 'Admin Branding Configuration', // Name that appears at the top of your panel760 'display_name' => __('Admin Branding Configuration', 'wpbizplugins-uac'), // Name that appears at the top of your panel 761 761 //'display_version' => '1.0', // Version that appears at the top of your panel 762 762 'menu_type' => 'menu', //Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only) … … 833 833 $this->args['share_icons'][] = array( 834 834 'url' => 'https://www.facebook.com/wpbizplugins', 835 'title' => 'Like us on Facebook',835 'title' => __('Like us on Facebook', 'wpbizplugins-uac'), 836 836 'icon' => 'el-icon-facebook' 837 837 ); 838 838 $this->args['share_icons'][] = array( 839 839 'url' => 'http://twitter.com/wpbizplugins', 840 'title' => 'Follow us on Twitter',840 'title' => __('Follow us on Twitter', 'wpbizplugins-uac'), 841 841 'icon' => 'el-icon-twitter' 842 842 );
Note: See TracChangeset
for help on using the changeset viewer.