Cleanup WC_Admin_Permalink_Settings

This commit is contained in:
shivapoudel 2015-02-04 22:12:06 +05:45
parent db012b03df
commit dcdf00e06f
1 changed files with 6 additions and 5 deletions

View File

@ -2,14 +2,15 @@
/** /**
* Adds settings to the permalinks admin settings page. * Adds settings to the permalinks admin settings page.
* *
* @class WC_Admin_Permalink_Settings
* @author WooThemes * @author WooThemes
* @category Admin * @category Admin
* @package WooCommerce/Admin * @package WooCommerce/Admin
* @version 2.1.0 * @version 2.3.0
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly exit;
} }
if ( ! class_exists( 'WC_Admin_Permalink_Settings' ) ) : if ( ! class_exists( 'WC_Admin_Permalink_Settings' ) ) :
@ -28,7 +29,7 @@ class WC_Admin_Permalink_Settings {
} }
/** /**
* Init our settings * Init our settings.
*/ */
public function settings_init() { public function settings_init() {
// Add a section to the permalinks page // Add a section to the permalinks page
@ -89,7 +90,7 @@ class WC_Admin_Permalink_Settings {
} }
/** /**
* Show the settings * Show the settings.
*/ */
public function settings() { public function settings() {
echo wpautop( __( 'These settings control the permalinks used for products. These settings only apply when <strong>not using "default" permalinks above</strong>.', 'woocommerce' ) ); echo wpautop( __( 'These settings control the permalinks used for products. These settings only apply when <strong>not using "default" permalinks above</strong>.', 'woocommerce' ) );
@ -153,7 +154,7 @@ class WC_Admin_Permalink_Settings {
} }
/** /**
* Save the settings * Save the settings.
*/ */
public function settings_save() { public function settings_save() {