Initial Commit
This commit is contained in:
@ -0,0 +1,312 @@
|
||||
<?php
|
||||
/**
|
||||
* WP Ultimo Customize/Add New Template Previewer Page.
|
||||
*
|
||||
* @package WP_Ultimo
|
||||
* @subpackage Admin_Pages
|
||||
* @since 2.0.0
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Admin_Pages;
|
||||
|
||||
use \WP_Ultimo\UI\Template_Previewer;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
/**
|
||||
* WP Ultimo Template Previewer Customize/Add New Admin Page.
|
||||
*/
|
||||
class Template_Previewer_Customize_Admin_Page extends Customizer_Admin_Page {
|
||||
|
||||
/**
|
||||
* Holds the ID for this page, this is also used as the page slug.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $id = 'wp-ultimo-customize-template-previewer';
|
||||
|
||||
/**
|
||||
* Is this a top-level menu or a submenu?
|
||||
*
|
||||
* @since 1.8.2
|
||||
* @var string
|
||||
*/
|
||||
protected $type = 'submenu';
|
||||
|
||||
/**
|
||||
* Is this a top-level menu or a submenu?
|
||||
*
|
||||
* @since 1.8.2
|
||||
* @var string
|
||||
*/
|
||||
protected $parent = 'none';
|
||||
|
||||
/**
|
||||
* This page has no parent, so we need to highlight another sub-menu.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @var string
|
||||
*/
|
||||
protected $highlight_menu_slug = 'wp-ultimo-settings';
|
||||
|
||||
/**
|
||||
* Holds the admin panels where this page should be displayed, as well as which capability to require.
|
||||
*
|
||||
* To add a page to the regular admin (wp-admin/), use: 'admin_menu' => 'capability_here'
|
||||
* To add a page to the network admin (wp-admin/network), use: 'network_admin_menu' => 'capability_here'
|
||||
* To add a page to the user (wp-admin/user) admin, use: 'user_admin_menu' => 'capability_here'
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @var array
|
||||
*/
|
||||
protected $supported_panels = array(
|
||||
'network_admin_menu' => 'wu_customize_invoice_template',
|
||||
);
|
||||
|
||||
/**
|
||||
* Returns the preview URL. This is then added to the iframe.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_preview_url() {
|
||||
|
||||
$url = get_site_url(null);
|
||||
|
||||
return add_query_arg(array(
|
||||
'customizer' => 1,
|
||||
Template_Previewer::get_instance()->get_preview_parameter() => 1,
|
||||
), $url);
|
||||
|
||||
} // end get_preview_url;
|
||||
|
||||
/**
|
||||
* Allow child classes to register widgets, if they need them.
|
||||
*
|
||||
* @since 1.8.2
|
||||
* @return void
|
||||
*/
|
||||
public function register_widgets() {
|
||||
|
||||
$this->add_save_widget('save', array(
|
||||
'fields' => array(
|
||||
'preview_url_parameter' => array(
|
||||
'type' => 'text',
|
||||
'title' => __('URL Parameter', 'wp-ultimo'),
|
||||
'desc' => __('This is the URL parameter WP Ultimo will use to generate the template preview URLs.', 'wp-ultimo'),
|
||||
'value' => Template_Previewer::get_instance()->get_setting('preview_url_parameter', 'template-preview'),
|
||||
),
|
||||
'enabled' => array(
|
||||
'type' => 'toggle',
|
||||
'title' => __('Active', 'wp-ultimo'),
|
||||
'desc' => __('If your site templates are not loading, you can disable the top-bar using this setting.', 'wp-ultimo'),
|
||||
'value' => Template_Previewer::get_instance()->get_setting('enabled', true),
|
||||
'html_attr' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
|
||||
$custom_logo_id = Template_Previewer::get_instance()->get_setting('custom_logo');
|
||||
|
||||
$custom_logo = wp_get_attachment_image_src($custom_logo_id, 'full');
|
||||
|
||||
$custom_logo = $custom_logo ? $custom_logo[0] : false;
|
||||
|
||||
$fields = array(
|
||||
'tab' => array(
|
||||
'type' => 'tab-select',
|
||||
'wrapper_classes' => '',
|
||||
'wrapper_html_attr' => array(
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model' => 'tab',
|
||||
),
|
||||
'options' => array(
|
||||
'general' => __('General', 'wp-ultimo'),
|
||||
'colors' => __('Colors', 'wp-ultimo'),
|
||||
'images' => __('Images', 'wp-ultimo'),
|
||||
),
|
||||
),
|
||||
|
||||
'display_responsive_controls' => array(
|
||||
'type' => 'toggle',
|
||||
'title' => __('Show Responsive Controls', 'wp-ultimo'),
|
||||
'desc' => __('Toggle to show or hide the responsive controls.', 'wp-ultimo'),
|
||||
'value' => true,
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "general")',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model' => 'display_responsive_controls',
|
||||
),
|
||||
),
|
||||
'button_text' => array(
|
||||
'type' => 'text',
|
||||
'title' => __('Button Text', 'wp-ultimo'),
|
||||
'value' => __('Use this Template', 'wp-ultimo'),
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "general")',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model.lazy' => 'button_text',
|
||||
),
|
||||
),
|
||||
|
||||
'bg_color' => array(
|
||||
'type' => 'color-picker',
|
||||
'title' => __('Background Color', 'wp-ultimo'),
|
||||
'desc' => __('Choose the background color for the top-bar.', 'wp-ultimo'),
|
||||
'value' => '#f9f9f9',
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "colors")',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model' => 'bg_color',
|
||||
),
|
||||
),
|
||||
'button_bg_color' => array(
|
||||
'type' => 'color-picker',
|
||||
'title' => __('Button BG Color', 'wp-ultimo'),
|
||||
'desc' => __('Pick the background color for the button.', 'wp-ultimo'),
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "colors")',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model' => 'button_bg_color',
|
||||
),
|
||||
),
|
||||
|
||||
'use_custom_logo' => array(
|
||||
'type' => 'toggle',
|
||||
'title' => __('Use Custom Logo', 'wp-ultimo'),
|
||||
'desc' => __('You can set a different logo to be used on the top-bar.', 'wp-ultimo'),
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "images")',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
'html_attr' => array(
|
||||
'v-model' => 'use_custom_logo',
|
||||
),
|
||||
),
|
||||
'custom_logo' => array(
|
||||
'type' => 'image',
|
||||
'stacked' => true,
|
||||
'title' => __('Custom Logo', 'wp-ultimo'),
|
||||
'desc' => __('The logo is displayed on the preview page top-bar.', 'wp-ultimo'),
|
||||
'value' => $custom_logo_id,
|
||||
'img' => $custom_logo,
|
||||
'wrapper_html_attr' => array(
|
||||
'v-show' => 'require("tab", "images") && require("use_custom_logo", true)',
|
||||
'v-cloak' => 1,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$settings = Template_Previewer::get_instance()->get_settings();
|
||||
|
||||
$state = array_merge($settings, array(
|
||||
'tab' => 'general',
|
||||
'refresh' => true,
|
||||
));
|
||||
|
||||
$this->add_fields_widget('customizer', array(
|
||||
'title' => __('Customizer', 'wp-ultimo'),
|
||||
'position' => 'side',
|
||||
'fields' => $fields,
|
||||
'html_attr' => array(
|
||||
'style' => 'margin-top: -6px;',
|
||||
'data-wu-app' => 'site_template_customizer',
|
||||
'data-wu-customizer-panel' => true,
|
||||
'data-state' => json_encode($state),
|
||||
),
|
||||
));
|
||||
|
||||
} // end register_widgets;
|
||||
|
||||
/**
|
||||
* Returns the title of the page.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string Title of the page.
|
||||
*/
|
||||
public function get_title() {
|
||||
|
||||
return __('Customize Template Previewer', 'wp-ultimo');
|
||||
|
||||
} // end get_title;
|
||||
|
||||
/**
|
||||
* Returns the title of menu for this page.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string Menu label of the page.
|
||||
*/
|
||||
public function get_menu_title() {
|
||||
|
||||
return __('Customize Template Previewer', 'wp-ultimo');
|
||||
|
||||
} // end get_menu_title;
|
||||
|
||||
/**
|
||||
* Returns the action links for that page.
|
||||
*
|
||||
* @since 1.8.2
|
||||
* @return array
|
||||
*/
|
||||
public function action_links() {
|
||||
|
||||
return array();
|
||||
|
||||
} // end action_links;
|
||||
|
||||
/**
|
||||
* Returns the labels to be used on the admin page.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return array
|
||||
*/
|
||||
public function get_labels() {
|
||||
|
||||
return array(
|
||||
'customize_label' => __('Customize Template Previewer', 'wp-ultimo'),
|
||||
'add_new_label' => __('Customize Template Previewer', 'wp-ultimo'),
|
||||
'edit_label' => __('Edit Template Previewer', 'wp-ultimo'),
|
||||
'updated_message' => __('Template Previewer updated with success!', 'wp-ultimo'),
|
||||
'title_placeholder' => __('Enter Template Previewer Name', 'wp-ultimo'),
|
||||
'title_description' => __('This name is used for internal reference only.', 'wp-ultimo'),
|
||||
'save_button_label' => __('Save Changes', 'wp-ultimo'),
|
||||
'save_description' => '',
|
||||
);
|
||||
|
||||
} // end get_labels;
|
||||
|
||||
/**
|
||||
* Should implement the processes necessary to save the changes made to the object.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return void
|
||||
*/
|
||||
public function handle_save() {
|
||||
|
||||
$settings = Template_Previewer::get_instance()->save_settings($_POST);
|
||||
|
||||
$array_params = array(
|
||||
'updated' => 1,
|
||||
);
|
||||
|
||||
$url = add_query_arg($array_params);
|
||||
|
||||
wp_redirect($url);
|
||||
|
||||
exit;
|
||||
|
||||
} // end handle_save;
|
||||
|
||||
} // end class Template_Previewer_Customize_Admin_Page;
|
Reference in New Issue
Block a user