Plugin Directory

Changeset 2052267


Ignore:
Timestamp:
03/18/2019 12:14:18 AM (7 years ago)
Author:
warriorrocker
Message:

Minor fixes for admin settings fields and descriptions

Location:
xo-for-angular/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • xo-for-angular/trunk/Includes/Options/Tabs/General/ApiTab.class.php

    r2043391 r2052267  
    186186            $section,
    187187            'xo_access_control_allowed_hosts',
    188             __('API Enabled', 'xo'),
     188            __('Allowed Hosts', 'xo'),
    189189            function ($option, $states, $value) {
    190190                return $this->GenerateTextareaField(
  • xo-for-angular/trunk/Includes/Options/Tabs/General/IndexTab.class.php

    r2043256 r2052267  
    8080                return $this->GenerateInputTextField(
    8181                    $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')
    8383                );
    8484            }
  • xo-for-angular/trunk/Includes/Options/Tabs/General/RoutingTab.class.php

    r2043391 r2052267  
    5555                return $this->GenerateInputCheckboxField(
    5656                    $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')
    5858                );
    5959            }
  • xo-for-angular/trunk/Includes/Options/Tabs/Tools/ProfileTab.class.php

    r2051900 r2052267  
    66 * @since 1.0.0
    77 */
    8 class XoOptionsTabProfile extends XoOptionsAbstractTab
     8class XoOptionsTabProfile extends XoOptionsAbstractFieldsTab
    99{
    1010    /**
     
    2626        global $wp_version;
    2727        global $wpdb;
     28
     29        $this->GenerateSection(
     30            __('Profile Information', 'xo'),
     31            __('Additional profile and environment information useful for debugging.', 'xo')
     32        );
    2833
    2934        $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  
    66 * @since 1.0.0
    77 */
    8 class XoOptionsTabTools extends XoOptionsAbstractTab
     8class XoOptionsTabTools extends XoOptionsAbstractFieldsTab
    99{
    1010    /**
     
    3131
    3232    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        );
    3537    }
    3638
  • xo-for-angular/trunk/xo-angular.php

    r2051907 r2052267  
    44Plugin URI: https://angularxo.io
    55Description: Angular theme development in WordPress with templates and a powerful API.
    6 Version: 1.0.5
     6Version: 1.0.6
    77Author: Travis Brown
    88Author URI: http://www.xodustech.com
Note: See TracChangeset for help on using the changeset viewer.