Initial Commit
This commit is contained in:
@ -0,0 +1,112 @@
|
||||
<?php
|
||||
/**
|
||||
* Template Selection Clean
|
||||
*
|
||||
* @package WP_Ultimo
|
||||
* @subpackage Checkout\Signup_Fields
|
||||
* @since 2.0.0
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Template_Selection;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
use \WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Base_Field_Template;
|
||||
|
||||
/**
|
||||
* Template Selection Clean
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
class Clean_Template_Selection_Field_Template extends Base_Field_Template {
|
||||
|
||||
/**
|
||||
* Field template id.
|
||||
*
|
||||
* Needs to take the following format: field-type/id.
|
||||
* e.g. pricing-table/clean.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @var string
|
||||
*/
|
||||
protected $id = 'template-selection/clean';
|
||||
|
||||
/**
|
||||
* The render type for the template.
|
||||
*
|
||||
* Field templates can have two different render types, ajax and dynamic.
|
||||
* If ajax is selected, when we detect a change in the billing period and other
|
||||
* sensitive info, an ajax request is made to fetch the new pricing table HTML
|
||||
* markup.
|
||||
*
|
||||
* If dynamic is selected, nothing is done as the template can handle
|
||||
* reactive updates natively (using Vue.js)
|
||||
*
|
||||
* In terms of performance, dynamic is preferred, but ajax should
|
||||
* work just fine.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string Either ajax or dynamic
|
||||
*/
|
||||
public function get_render_type(): string {
|
||||
|
||||
return 'ajax';
|
||||
|
||||
} // end get_render_type;
|
||||
|
||||
/**
|
||||
* The title of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_title() {
|
||||
|
||||
return __('Clean', 'wp-ultimo');
|
||||
|
||||
} // end get_title;
|
||||
|
||||
/**
|
||||
* The description of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_description(): string {
|
||||
|
||||
return __('A simple layout with minimal styling, just enough to make it usable out-of-the-box.', 'wp-ultimo');
|
||||
|
||||
} // end get_description;
|
||||
|
||||
/**
|
||||
* The preview of the field template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_preview(): string {
|
||||
|
||||
return wu_get_asset('checkout-forms/clean-template-selection.png');
|
||||
|
||||
} // end get_preview;
|
||||
|
||||
/**
|
||||
* The content of the template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*
|
||||
* @param array $attributes The field template attributes.
|
||||
* @return void
|
||||
*/
|
||||
public function output($attributes) {
|
||||
|
||||
wu_get_template('checkout/templates/template-selection/clean', $attributes);
|
||||
|
||||
} // end output;
|
||||
|
||||
} // end class Clean_Template_Selection_Field_Template;
|
@ -0,0 +1,103 @@
|
||||
<?php
|
||||
/**
|
||||
* Legacy Field Template Selector
|
||||
*
|
||||
* @package WP_Ultimo
|
||||
* @subpackage Checkout\Signup_Fields
|
||||
* @since 2.0.0
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Template_Selection;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
use \WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Base_Field_Template;
|
||||
|
||||
/**
|
||||
* Legacy Field Template Selector
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
class Legacy_Template_Selection_Field_Template extends Base_Field_Template {
|
||||
|
||||
/**
|
||||
* Field template id.
|
||||
*
|
||||
* Needs to take the following format: field-type/id.
|
||||
* e.g. pricing-table/clean.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @var string
|
||||
*/
|
||||
protected $id = 'template-selection/legacy';
|
||||
|
||||
/**
|
||||
* Get render type for the template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_render_type(): string {
|
||||
|
||||
return 'ajax';
|
||||
|
||||
} // end get_render_type;
|
||||
|
||||
/**
|
||||
* The title of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_title() {
|
||||
|
||||
return __('Legacy', 'wp-ultimo');
|
||||
|
||||
} // end get_title;
|
||||
|
||||
/**
|
||||
* The description of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_description() {
|
||||
|
||||
return __('Implementation of the layout that shipped with WP Ultimo < 1.10.X.', 'wp-ultimo');
|
||||
|
||||
} // end get_description;
|
||||
|
||||
/**
|
||||
* The preview image of the field template.
|
||||
*
|
||||
* The URL of the image preview.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_preview(): string {
|
||||
|
||||
return wu_get_asset('checkout-forms/legacy-template-selection.png');
|
||||
|
||||
} // end get_preview;
|
||||
|
||||
/**
|
||||
* The content of the template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*
|
||||
* @param array $attributes The field template attributes.
|
||||
* @return void
|
||||
*/
|
||||
public function output($attributes) {
|
||||
|
||||
wu_get_template('checkout/templates/template-selection/legacy', $attributes);
|
||||
|
||||
} // end output;
|
||||
|
||||
} // end class Legacy_Template_Selection_Field_Template;
|
@ -0,0 +1,101 @@
|
||||
<?php
|
||||
/**
|
||||
* Template Selection Clean
|
||||
*
|
||||
* @package WP_Ultimo
|
||||
* @subpackage Checkout\Signup_Fields
|
||||
* @since 2.0.0
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Template_Selection;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
use \WP_Ultimo\Checkout\Signup_Fields\Field_Templates\Base_Field_Template;
|
||||
|
||||
/**
|
||||
* Template Selection Minimal
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
class Minimal_Template_Selection_Field_Template extends Base_Field_Template {
|
||||
|
||||
/**
|
||||
* Field template id.
|
||||
*
|
||||
* Needs to take the following format: field-type/id.
|
||||
* e.g. pricing-table/clean.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @var string
|
||||
*/
|
||||
protected $id = 'template-selection/minimal';
|
||||
|
||||
/**
|
||||
* Get render type for the template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_render_type(): string {
|
||||
|
||||
return 'ajax';
|
||||
|
||||
} // end get_render_type;
|
||||
|
||||
/**
|
||||
* The title of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_title() {
|
||||
|
||||
return __('Minimal', 'wp-ultimo');
|
||||
|
||||
} // end get_title;
|
||||
|
||||
/**
|
||||
* The description of the field template.
|
||||
*
|
||||
* This is used on the template selector.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_description() {
|
||||
|
||||
return __('A simple template with clean markup and no styling, ready to be customized with custom CSS.', 'wp-ultimo');
|
||||
|
||||
} // end get_description;
|
||||
|
||||
/**
|
||||
* The preview of the field template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @return string
|
||||
*/
|
||||
public function get_preview(): string {
|
||||
|
||||
return wu_get_asset('checkout-forms/minimal-template-selection.png');
|
||||
|
||||
} // end get_preview;
|
||||
|
||||
/**
|
||||
* The content of the template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*
|
||||
* @param array $attributes The field template attributes.
|
||||
* @return void
|
||||
*/
|
||||
public function output($attributes) {
|
||||
|
||||
wu_get_template('checkout/templates/template-selection/minimal', $attributes);
|
||||
|
||||
} // end output;
|
||||
|
||||
} // end class Minimal_Template_Selection_Field_Template;
|
Reference in New Issue
Block a user