Changeset 2052267
- Timestamp:
- 03/18/2019 12:14:18 AM (7 years ago)
- Location:
- xo-for-angular/trunk
- Files:
-
- 6 edited
-
Includes/Options/Tabs/General/ApiTab.class.php (modified) (1 diff)
-
Includes/Options/Tabs/General/IndexTab.class.php (modified) (1 diff)
-
Includes/Options/Tabs/General/RoutingTab.class.php (modified) (1 diff)
-
Includes/Options/Tabs/Tools/ProfileTab.class.php (modified) (2 diffs)
-
Includes/Options/Tabs/Tools/ToolsTab.class.php (modified) (2 diffs)
-
xo-angular.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
xo-for-angular/trunk/Includes/Options/Tabs/General/ApiTab.class.php
r2043391 r2052267 186 186 $section, 187 187 'xo_access_control_allowed_hosts', 188 __('A PI Enabled', 'xo'),188 __('Allowed Hosts', 'xo'), 189 189 function ($option, $states, $value) { 190 190 return $this->GenerateTextareaField( -
xo-for-angular/trunk/Includes/Options/Tabs/General/IndexTab.class.php
r2043256 r2052267 80 80 return $this->GenerateInputTextField( 81 81 $option, $states, $value, 82 __('The full path to the dist index relative to active template folder.', 'xo')82 __('The full path to the dist index relative to the active template folder.', 'xo') 83 83 ); 84 84 } -
xo-for-angular/trunk/Includes/Options/Tabs/General/RoutingTab.class.php
r2043391 r2052267 55 55 return $this->GenerateInputCheckboxField( 56 56 $option, $states, $value, 57 __(' This will add a filter on preview_post_link and generate the appropriate routes.', 'xo')57 __('Add post and page preview links to dynamic routes when logged in.', 'xo') 58 58 ); 59 59 } -
xo-for-angular/trunk/Includes/Options/Tabs/Tools/ProfileTab.class.php
r2051900 r2052267 6 6 * @since 1.0.0 7 7 */ 8 class XoOptionsTabProfile extends XoOptionsAbstract Tab8 class XoOptionsTabProfile extends XoOptionsAbstractFieldsTab 9 9 { 10 10 /** … … 26 26 global $wp_version; 27 27 global $wpdb; 28 29 $this->GenerateSection( 30 __('Profile Information', 'xo'), 31 __('Additional profile and environment information useful for debugging.', 'xo') 32 ); 28 33 29 34 $plugin = get_plugin_data(ABSPATH . 'wp-content/plugins/' . $this->Xo->plugin, false); -
xo-for-angular/trunk/Includes/Options/Tabs/Tools/ToolsTab.class.php
r2051900 r2052267 6 6 * @since 1.0.0 7 7 */ 8 class XoOptionsTabTools extends XoOptionsAbstract Tab8 class XoOptionsTabTools extends XoOptionsAbstractFieldsTab 9 9 { 10 10 /** … … 31 31 32 32 function AddGeneralSection() { 33 echo '<h3>' . __('Editor Options', 'xo') . '</h3>' . 34 '<p>' . __('Some Tools.', 'xo') . '</p>'; 33 $this->GenerateSection( 34 __('Tools and Actions', 'xo'), 35 __('Additional tools and manual actions.', 'xo') 36 ); 35 37 } 36 38 -
xo-for-angular/trunk/xo-angular.php
r2051907 r2052267 4 4 Plugin URI: https://angularxo.io 5 5 Description: Angular theme development in WordPress with templates and a powerful API. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: Travis Brown 8 8 Author URI: http://www.xodustech.com
Note: See TracChangeset
for help on using the changeset viewer.