khaihihi
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
die( '-1' );
|
||||
}
|
||||
|
||||
// Helpers
|
||||
if ( ! function_exists( 'vc_atm_build_categories_array' ) ) {
|
||||
/**
|
||||
* @param $string
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function vc_atm_build_categories_array( $string ) {
|
||||
return explode( ',', preg_replace( '/\,\s+/', ',', trim( $string ) ) );
|
||||
}
|
||||
}
|
||||
if ( ! function_exists( 'vc_atm_build_params_array' ) ) {
|
||||
/**
|
||||
* @param $array
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function vc_atm_build_params_array( $array ) {
|
||||
$params = array();
|
||||
if ( is_array( $array ) ) {
|
||||
foreach ( $array as $param ) {
|
||||
if ( 'dropdown' === $param['type'] ) {
|
||||
$param['value'] = explode( ',', preg_replace( '/\,\s+/', ',', trim( $param['value'] ) ) );
|
||||
}
|
||||
$param['save_always'] = true;
|
||||
$params[] = $param;
|
||||
}
|
||||
}
|
||||
|
||||
return $params;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,168 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
die( '-1' );
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'Vc_Automap_Model' ) ) {
|
||||
/**
|
||||
* Shortcode as model for automapper. Provides crud functionality for storing data for shortcodes that mapped by ATM
|
||||
*
|
||||
* @see Vc_Automapper
|
||||
* @since 4.1
|
||||
*/
|
||||
class Vc_Automap_Model {
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected static $option_name = 'vc_automapped_shortcodes';
|
||||
/**
|
||||
* @var
|
||||
*/
|
||||
protected static $option_data;
|
||||
/**
|
||||
* @var array|bool
|
||||
*/
|
||||
public $id = false;
|
||||
public $tag;
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
protected $data;
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $vars = array(
|
||||
'tag',
|
||||
'name',
|
||||
'category',
|
||||
'description',
|
||||
'params',
|
||||
);
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @param $data
|
||||
*/
|
||||
public function __construct( $data ) {
|
||||
$this->loadOptionData();
|
||||
$this->id = is_array( $data ) && isset( $data['id'] ) ? esc_attr( $data['id'] ) : $data;
|
||||
if ( is_array( $data ) ) {
|
||||
$this->data = stripslashes_deep( $data );
|
||||
}
|
||||
foreach ( $this->vars as $var ) {
|
||||
$this->{$var} = $this->get( $var );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public static function findAll() {
|
||||
self::loadOptionData();
|
||||
$records = array();
|
||||
foreach ( self::$option_data as $id => $record ) {
|
||||
$record['id'] = $id;
|
||||
$model = new self( $record );
|
||||
if ( $model ) {
|
||||
$records[] = $model;
|
||||
}
|
||||
}
|
||||
|
||||
return $records;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array|mixed
|
||||
*/
|
||||
final protected static function loadOptionData() {
|
||||
if ( is_null( self::$option_data ) ) {
|
||||
self::$option_data = get_option( self::$option_name );
|
||||
}
|
||||
if ( ! self::$option_data ) {
|
||||
self::$option_data = array();
|
||||
}
|
||||
|
||||
return self::$option_data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $key
|
||||
*
|
||||
* @return null
|
||||
*/
|
||||
public function get( $key ) {
|
||||
if ( is_null( $this->data ) ) {
|
||||
$this->data = isset( self::$option_data[ $this->id ] ) ? self::$option_data[ $this->id ] : array();
|
||||
}
|
||||
|
||||
return isset( $this->data[ $key ] ) ? $this->data[ $key ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $attr
|
||||
* @param null $value
|
||||
*/
|
||||
public function set( $attr, $value = null ) {
|
||||
if ( is_array( $attr ) ) {
|
||||
foreach ( $attr as $key => $value ) {
|
||||
$this->set( $key, $value );
|
||||
}
|
||||
} elseif ( ! is_null( $value ) ) {
|
||||
$this->{$attr} = $value;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function save() {
|
||||
if ( ! $this->isValid() ) {
|
||||
return false;
|
||||
}
|
||||
foreach ( $this->vars as $var ) {
|
||||
$this->data[ $var ] = $this->{$var};
|
||||
}
|
||||
|
||||
return $this->saveOption();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function delete() {
|
||||
return $this->deleteOption();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function isValid() {
|
||||
if ( ! is_string( $this->name ) || empty( $this->name ) ) {
|
||||
return false;
|
||||
}
|
||||
if ( ! preg_match( '/^\S+$/', $this->tag ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
protected function saveOption() {
|
||||
self::$option_data[ $this->id ] = $this->data;
|
||||
|
||||
return update_option( self::$option_name, self::$option_data );
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
protected function deleteOption() {
|
||||
unset( self::$option_data[ $this->id ] );
|
||||
|
||||
return delete_option( self::$option_name );
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,392 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
die( '-1' );
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'Vc_Automapper' ) ) {
|
||||
/**
|
||||
* Automated shortcode mapping
|
||||
*
|
||||
* Automapper adds settings tab for VC settings tabs with ability to map custom shortcodes to VC editors,
|
||||
* if shortcode is not mapped by default or developers haven't done this yet.
|
||||
* No more shortcode copy/paste. Add any third party shortcode to the list of VC menu elements for reuse.
|
||||
* Edit params, values and description.
|
||||
*
|
||||
* @since 4.1
|
||||
*/
|
||||
class Vc_Automapper {
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
protected static $disabled = false;
|
||||
protected $title;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
$this->title = esc_attr__( 'Shortcode Mapper', 'js_composer' );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function addAjaxActions() {
|
||||
add_action( 'wp_ajax_vc_automapper_create', array(
|
||||
$this,
|
||||
'create',
|
||||
) );
|
||||
add_action( 'wp_ajax_vc_automapper_read', array(
|
||||
$this,
|
||||
'read',
|
||||
) );
|
||||
add_action( 'wp_ajax_vc_automapper_update', array(
|
||||
$this,
|
||||
'update',
|
||||
) );
|
||||
add_action( 'wp_ajax_vc_automapper_delete', array(
|
||||
$this,
|
||||
'delete',
|
||||
) );
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Builds html for Automapper CRUD like administration block
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function renderHtml() {
|
||||
if ( $this->disabled() ) {
|
||||
return false;
|
||||
}
|
||||
?>
|
||||
<div class="tab_intro">
|
||||
<p><?php esc_html_e( 'WPBakery Page Builder Shortcode Mapper adds custom 3rd party vendors shortcodes to the list of WPBakery Page Builder content elements menu (Note: to map shortcode it needs to be installed on site).', 'js_composer' ); ?></p>
|
||||
</div>
|
||||
<div class="vc_automapper-toolbar">
|
||||
<a href=javascript:;" class="button button-primary"
|
||||
id="vc_automapper-add-btn"><?php esc_html_e( 'Map Shortcode', 'js_composer' ); ?></a>
|
||||
</div>
|
||||
<ul class="vc_automapper-list">
|
||||
</ul>
|
||||
<?php $this->renderTemplates(); ?>
|
||||
<?php
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $shortcode
|
||||
*/
|
||||
public function renderListItem( $shortcode ) {
|
||||
echo sprintf( '<li class="vc_automapper-item" data-item-id=""><label>%s</label><span class="vc_automapper-item-controls"><a href="javascript:;" class="vc_automapper-edit-btn" data-id="%s" data-tag="%s"></a><a href="javascript:;" class="vc_automapper-delete-btn" data-id="%s" data-tag="%s"></a></span></li>', esc_html( $shortcode->name ), esc_attr( $shortcode->id ), esc_attr( $shortcode->tag ), esc_attr( $shortcode->id ), esc_attr( $shortcode->tag ) );
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function renderMapFormTpl() {
|
||||
$custom_tag = 'script'; // Maybe use html shadow dom or ajax response for templates
|
||||
?>
|
||||
<<?php echo esc_attr( $custom_tag ); ?> type="text/html" id="vc_automapper-add-form-tpl">
|
||||
<label for="vc_atm-shortcode-string"
|
||||
class="vc_info"><?php esc_html_e( 'Shortcode string', 'js_composer' ); ?></label>
|
||||
|
||||
<div class="vc_wrapper">
|
||||
<div class="vc_string">
|
||||
<input id="vc_atm-shortcode-string"
|
||||
placeholder="<?php esc_attr_e( 'Please enter valid shortcode', 'js_composer' ); ?>"
|
||||
type="text" class="vc_atm-string">
|
||||
</div>
|
||||
<div class="vc_buttons">
|
||||
<a href="#" id="vc_atm-parse-string"
|
||||
class="button button-primary vc_parse-btn"><?php esc_attr_e( 'Parse Shortcode', 'js_composer' ); ?></a>
|
||||
<a href="#" class="button vc_atm-cancel"><?php esc_attr_e( 'Cancel', 'js_composer' ); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Enter valid shortcode (Example: [my_shortcode first_param="first_param_value"]My shortcode content[/my_shortcode]).', 'js_composer' ); ?></span>
|
||||
</<?php echo esc_attr( $custom_tag ); ?>>
|
||||
<<?php echo esc_attr( $custom_tag ); ?> type="text/html" id="vc_automapper-item-complex-tpl">
|
||||
<div class="widget-top">
|
||||
<div class="widget-title-action">
|
||||
<button type="button" class="widget-action hide-if-no-js" aria-expanded="true">
|
||||
<span class="screen-reader-text"><?php esc_html_e( 'Edit widget: Search', 'js_composer' ); ?></span>
|
||||
<span class="toggle-indicator" aria-hidden="true"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="widget-title"><h4>{{ name }}<span class="in-widget-title"></span></h4></div>
|
||||
</div>
|
||||
<div class="widget-inside">
|
||||
</div>
|
||||
</<?php echo esc_attr( $custom_tag ); ?>>
|
||||
<<?php echo esc_attr( $custom_tag ); ?> type="text/html" id="vc_automapper-form-tpl">
|
||||
<input type="hidden" name="name" id="vc_atm-name" value="{{ name }}">
|
||||
|
||||
<div class="vc_shortcode-preview" id="vc_shortcode-preview">
|
||||
{{{ shortcode_preview }}}
|
||||
</div>
|
||||
<div class="vc_line"></div>
|
||||
<div class="vc_wrapper">
|
||||
<h4 class="vc_h"><?php esc_html_e( 'General Information', 'js_composer' ); ?></h4>
|
||||
|
||||
<div class="vc_field vc_tag">
|
||||
<label for="vc_atm-tag"><?php esc_html_e( 'Tag:', 'js_composer' ); ?></label>
|
||||
<input type="text" name="tag" id="vc_atm-tag" value="{{ tag }}">
|
||||
</div>
|
||||
<div class="vc_field vc_description">
|
||||
<label for="vc_atm-description"><?php esc_html_e( 'Description:', 'js_composer' ); ?></label>
|
||||
<textarea name="description" id="vc_atm-description">{{ description }}</textarea>
|
||||
</div>
|
||||
<div class="vc_field vc_category">
|
||||
<label for="vc_atm-category"><?php esc_html_e( 'Category:', 'js_composer' ); ?></label>
|
||||
<input type="text" name="category" id="vc_atm-category" value="{{ category }}">
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Comma separated categories names', 'js_composer' ); ?></span>
|
||||
</div>
|
||||
<div class="vc_field vc_is-container">
|
||||
<label for="vc_atm-is-container"><input type="checkbox" name="is_container"
|
||||
id="vc_atm-is-container"
|
||||
value=""> <?php esc_html_e( 'Include content param into shortcode', 'js_composer' ); ?>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="vc_line"></div>
|
||||
<div class="vc_wrapper">
|
||||
<h4 class="vc_h"><?php esc_html_e( 'Shortcode Parameters', 'js_composer' ); ?></h4>
|
||||
<a href="#" id="vc_atm-add-param"
|
||||
class="button vc_add-param">+ <?php esc_html_e( 'Add Param', 'js_composer' ); ?></a>
|
||||
|
||||
<div class="vc_params" id="vc_atm-params-list"></div>
|
||||
</div>
|
||||
<div class="vc_buttons">
|
||||
<a href="#" id="vc_atm-save"
|
||||
class="button button-primary"><?php esc_html_e( 'Save Changes', 'js_composer' ); ?></a>
|
||||
<a href="#" class="button vc_atm-cancel"><?php esc_html_e( 'Cancel', 'js_composer' ); ?></a>
|
||||
<a href="#" class="button vc_atm-delete"><?php esc_html_e( 'Delete', 'js_composer' ); ?></a>
|
||||
</div>
|
||||
</<?php echo esc_attr( $custom_tag ); ?>>
|
||||
<<?php echo esc_attr( $custom_tag ); ?> type="text/html" id="vc_atm-form-param-tpl">
|
||||
<div class="vc_controls vc_controls-row vc_clearfix"><a
|
||||
class="vc_control column_move vc_column-move vc_move-param" href="#"
|
||||
title="<?php esc_html_e( 'Drag row to reorder', 'js_composer' ); ?>" data-vc-control="move"><i
|
||||
class="vc-composer-icon vc-c-icon-dragndrop"></i></a><span class="vc_row_edit_clone_delete"><a
|
||||
class="vc_control column_delete vc_delete-param" href="#"
|
||||
title="<?php esc_html_e( 'Delete this param', 'js_composer' ); ?>"><i class="vc-composer-icon vc-c-icon-delete_empty"></i></a></span>
|
||||
</div>
|
||||
<div class="wpb_element_wrapper">
|
||||
<div class="vc_row vc_row-fluid wpb_row_container">
|
||||
<div class="wpb_vc_column wpb_sortable vc_col-sm-12 wpb_content_holder vc_empty-column">
|
||||
<div class="wpb_element_wrapper">
|
||||
<div class="vc_fields vc_clearfix">
|
||||
<div class="vc_param_name vc_param-field">
|
||||
<label><?php esc_html_e( 'Param name', 'js_composer' ); ?></label>
|
||||
<# if ( 'content' === param_name) { #>
|
||||
<span class="vc_content"><?php esc_html_e( 'Content', 'js_composer' ); ?></span>
|
||||
<input type="text" style="display: none;" name="param_name"
|
||||
value="{{ param_name }}"
|
||||
placeholder="<?php esc_attr_e( 'Required value', 'js_composer' ); ?>"
|
||||
class="vc_param-name"
|
||||
data-system="true">
|
||||
<span class="description"
|
||||
style="display: none;"><?php esc_html_e( 'Use only letters, numbers and underscore.', 'js_composer' ); ?></span>
|
||||
<# } else { #>
|
||||
<input type="text" name="param_name" value="{{ param_name }}"
|
||||
placeholder="<?php esc_attr_e( 'Required value', 'js_composer' ); ?>"
|
||||
class="vc_param-name">
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Please use only letters, numbers and underscore.', 'js_composer' ); ?></span>
|
||||
<# } #>
|
||||
</div>
|
||||
<div class="vc_heading vc_param-field">
|
||||
<label><?php esc_html_e( 'Heading', 'js_composer' ); ?></label>
|
||||
<input type="text" name="heading" value="{{ heading }}"
|
||||
placeholder="<?php esc_attr_e( 'Input heading', 'js_composer' ); ?>"
|
||||
<# if ( 'hidden' === type) { #>
|
||||
disabled="disabled"
|
||||
<# } #>>
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Heading for field in shortcode edit form.', 'js_composer' ); ?></span>
|
||||
</div>
|
||||
<div class="vc_type vc_param-field">
|
||||
<label><?php esc_html_e( 'Field type', 'js_composer' ); ?></label>
|
||||
<select name="type">
|
||||
<option value=""><?php esc_html_e( 'Select field type', 'js_composer' ); ?></option>
|
||||
<option
|
||||
value="textfield"<?php echo '<# if (type === "textfield") { #> selected<# } #>'; ?>><?php esc_html_e( 'Textfield', 'js_composer' ); ?></option>
|
||||
<option
|
||||
value="dropdown"<?php echo '<# if (type === "dropdown") { #> selected<# } #>'; ?>><?php esc_html_e( 'Dropdown', 'js_composer' ); ?></option>
|
||||
<option
|
||||
value="textarea"<?php echo '<# if(type==="textarea") { #> selected="selected"<# } #>'; ?>><?php esc_html_e( 'Textarea', 'js_composer' ); ?></option>
|
||||
<# if ( 'content' === param_name ) { #>
|
||||
<option
|
||||
value="textarea_html"<?php echo '<# if (type === "textarea_html") { #> selected<# } #>'; ?>><?php esc_html_e( 'Textarea HTML', 'js_composer' ); ?></option>
|
||||
<# } #>
|
||||
<option
|
||||
value="hidden"<?php echo '<# if (type === "hidden") { #> selected<# } #>'; ?>><?php esc_html_e( 'Hidden', 'js_composer' ); ?></option>
|
||||
|
||||
</select>
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Field type for shortcode edit form.', 'js_composer' ); ?></span>
|
||||
</div>
|
||||
<div class="vc_value vc_param-field">
|
||||
<label><?php esc_html_e( 'Default value', 'js_composer' ); ?></label>
|
||||
<input type="text" name="value" value="{{ value }}" class="vc_param-value">
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Default value or list of values for dropdown type (Note: separate by comma).', 'js_composer' ); ?></span>
|
||||
</div>
|
||||
<div class="description vc_param-field">
|
||||
<label><?php esc_html_e( 'Description', 'js_composer' ); ?></label>
|
||||
<textarea name="description" placeholder=""
|
||||
<# if ( 'hidden' === type ) { #>
|
||||
disabled="disabled"
|
||||
<# } #> >{{ description
|
||||
}}</textarea>
|
||||
<span
|
||||
class="description"><?php esc_html_e( 'Enter description for parameter.', 'js_composer' ); ?></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</<?php echo esc_attr( $custom_tag ); ?>>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function renderTemplates() {
|
||||
$custom_tag = 'script'; // Maybe use ajax resonse for template
|
||||
?>
|
||||
<<?php echo esc_attr( $custom_tag ); ?> type="text/html" id="vc_automapper-item-tpl">
|
||||
<label class="vc_automapper-edit-btn">{{ name }}</label>
|
||||
<span class="vc_automapper-item-controls">
|
||||
<a href="#" class="vc_automapper-delete-btn" title="<?php esc_html_e( 'Delete', 'js_composer' ); ?>"></a>
|
||||
<a href="#" class="vc_automapper-edit-btn" title="<?php esc_html_e( 'Edit', 'js_composer' ); ?>"></a>
|
||||
</span>
|
||||
</<?php echo esc_attr( $custom_tag ); ?>>
|
||||
<?php
|
||||
$this->renderMapFormTpl();
|
||||
}
|
||||
|
||||
public function create() {
|
||||
if ( ! vc_request_param( '_vcnonce' ) ) {
|
||||
return;
|
||||
}
|
||||
vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'manage_options' )->validateDie()->part( 'settings' )->can( 'vc-automapper-tab' )->validateDie();
|
||||
|
||||
$data = vc_post_param( 'data' );
|
||||
$shortcode = new Vc_Automap_Model( $data );
|
||||
|
||||
$this->result( $shortcode->save() );
|
||||
}
|
||||
|
||||
public function update() {
|
||||
if ( ! vc_request_param( '_vcnonce' ) ) {
|
||||
return;
|
||||
}
|
||||
vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'manage_options' )->validateDie()->part( 'settings' )->can( 'vc-automapper-tab' )->validateDie();
|
||||
|
||||
$id = (int) vc_post_param( 'id' );
|
||||
$data = vc_post_param( 'data' );
|
||||
$shortcode = new Vc_Automap_Model( $id );
|
||||
if ( ! isset( $data['params'] ) ) {
|
||||
$data['params'] = array();
|
||||
}
|
||||
$shortcode->set( $data );
|
||||
|
||||
$this->result( $shortcode->save() );
|
||||
}
|
||||
|
||||
public function delete() {
|
||||
if ( ! vc_request_param( '_vcnonce' ) ) {
|
||||
return;
|
||||
}
|
||||
vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'manage_options' )->validateDie()->part( 'settings' )->can( 'vc-automapper-tab' )->validateDie();
|
||||
|
||||
$id = vc_post_param( 'id' );
|
||||
$shortcode = new Vc_Automap_Model( $id );
|
||||
|
||||
$this->result( $shortcode->delete() );
|
||||
}
|
||||
|
||||
public function read() {
|
||||
if ( ! vc_request_param( '_vcnonce' ) ) {
|
||||
return;
|
||||
}
|
||||
vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'manage_options' )->validateDie()->part( 'settings' )->can( 'vc-automapper-tab' )->validateDie();
|
||||
|
||||
$this->result( Vc_Automap_Model::findAll() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Ajax result output
|
||||
*
|
||||
* @param $data
|
||||
*/
|
||||
public function result( $data ) {
|
||||
if ( false !== $data ) {
|
||||
wp_send_json_success( $data );
|
||||
} else {
|
||||
wp_send_json_error( $data );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter/Getter for Disabling Automapper
|
||||
* @static
|
||||
*
|
||||
* @param bool $disable
|
||||
*/
|
||||
public static function setDisabled( $disable = true ) {
|
||||
self::$disabled = $disable;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public static function disabled() {
|
||||
return self::$disabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter/Getter for Automapper title
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @param string $title
|
||||
*/
|
||||
public function setTitle( $title ) {
|
||||
$this->title = $title;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string|void
|
||||
*/
|
||||
public function title() {
|
||||
return $this->title;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public static function map() {
|
||||
$shortcodes = Vc_Automap_Model::findAll();
|
||||
foreach ( $shortcodes as $shortcode ) {
|
||||
vc_map( array(
|
||||
'name' => $shortcode->name,
|
||||
'base' => $shortcode->tag,
|
||||
'category' => vc_atm_build_categories_array( $shortcode->category ),
|
||||
'description' => $shortcode->description,
|
||||
'params' => vc_atm_build_params_array( $shortcode->params ),
|
||||
'show_settings_on_create' => ! empty( $shortcode->params ),
|
||||
'atm' => true,
|
||||
'icon' => 'icon-wpb-atm',
|
||||
) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,555 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
die( '-1' );
|
||||
}
|
||||
|
||||
/**
|
||||
* WPBakery WPBakery Page Builder Plugin
|
||||
*
|
||||
* @package WPBakeryPageBuilder
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Manage license
|
||||
*
|
||||
* Activation/deactivation is done via support portal and does not use Envato username and
|
||||
* api_key anymore
|
||||
*/
|
||||
class Vc_License {
|
||||
|
||||
/**
|
||||
* Option name where license key is stored
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected static $license_key_option = 'js_composer_purchase_code';
|
||||
|
||||
/**
|
||||
* Option name where license key token is stored
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected static $license_key_token_option = 'license_key_token';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected static $support_host = 'https://support.wpbakery.com';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $error = null;
|
||||
|
||||
public function init() {
|
||||
|
||||
if ( 'vc-updater' === vc_get_param( 'page' ) ) {
|
||||
$activate = vc_get_param( 'activate' );
|
||||
$deactivate = vc_get_param( 'deactivate' );
|
||||
if ( $activate ) {
|
||||
$this->finishActivationDeactivation( true, $activate );
|
||||
} elseif ( $deactivate ) {
|
||||
$this->finishActivationDeactivation( false, $deactivate );
|
||||
}
|
||||
}
|
||||
|
||||
add_action( 'wp_ajax_vc_get_activation_url', array(
|
||||
$this,
|
||||
'startActivationResponse',
|
||||
) );
|
||||
add_action( 'wp_ajax_vc_get_deactivation_url', array(
|
||||
$this,
|
||||
'startDeactivationResponse',
|
||||
) );
|
||||
|
||||
add_action( 'wp_ajax_nopriv_vc_check_license_key', array(
|
||||
vc_license(),
|
||||
'checkLicenseKeyFromRemote',
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Output notice
|
||||
*
|
||||
* @param string $message
|
||||
* @param bool $success
|
||||
*/
|
||||
public function outputNotice( $message, $success = true ) {
|
||||
echo sprintf( '<div class="%s"><p>%s</p></div>', (bool) $success ? 'updated' : 'error', esc_html( $message ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Show error
|
||||
*
|
||||
* @param string $error
|
||||
*/
|
||||
public function showError( $error ) {
|
||||
$this->error = $error;
|
||||
add_action( 'admin_notices', array(
|
||||
$this,
|
||||
'outputLastError',
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Output last error
|
||||
*/
|
||||
public function outputLastError() {
|
||||
$this->outputNotice( $this->error, false );
|
||||
}
|
||||
|
||||
/**
|
||||
* Output successful activation message
|
||||
*/
|
||||
public function outputActivatedSuccess() {
|
||||
$this->outputNotice( esc_html__( 'WPBakery Page Builder successfully activated.', 'js_composer' ), true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Output successful deactivation message
|
||||
*/
|
||||
public function outputDeactivatedSuccess() {
|
||||
$this->outputNotice( esc_html__( 'WPBakery Page Builder successfully deactivated.', 'js_composer' ), true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Finish pending activation/deactivation
|
||||
*
|
||||
* 1) Make API call to support portal
|
||||
* 2) Receive success status and license key
|
||||
* 3) Set new license key
|
||||
*
|
||||
* @param bool $activation
|
||||
* @param string $user_token
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function finishActivationDeactivation( $activation, $user_token ) {
|
||||
if ( ! $this->isValidToken( $user_token ) ) {
|
||||
$this->showError( esc_html__( 'Token is not valid or has expired', 'js_composer' ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( $activation ) {
|
||||
$url = self::$support_host . '/finish-license-activation';
|
||||
} else {
|
||||
$url = self::$support_host . '/finish-license-deactivation';
|
||||
}
|
||||
|
||||
$params = array(
|
||||
'body' => array( 'token' => $user_token ),
|
||||
'timeout' => 30,
|
||||
);
|
||||
// FIX SSL SNI
|
||||
$filter_add = true;
|
||||
if ( function_exists( 'curl_version' ) ) {
|
||||
$version = curl_version();
|
||||
if ( version_compare( $version['version'], '7.18', '>=' ) ) {
|
||||
$filter_add = false;
|
||||
}
|
||||
}
|
||||
if ( $filter_add ) {
|
||||
add_filter( 'https_ssl_verify', '__return_false' );
|
||||
}
|
||||
$response = wp_remote_post( $url, $params );
|
||||
|
||||
if ( $filter_add ) {
|
||||
remove_filter( 'https_ssl_verify', '__return_false' );
|
||||
}
|
||||
|
||||
if ( is_wp_error( $response ) ) {
|
||||
$this->showError( sprintf( esc_html__( '%s. Please try again.', 'js_composer' ), $response->get_error_message() ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( 200 !== $response['response']['code'] ) {
|
||||
$this->showError( sprintf( esc_html__( 'Server did not respond with OK: %s', 'js_composer' ), $response['response']['code'] ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$json = json_decode( $response['body'], true );
|
||||
|
||||
if ( ! $json || ! isset( $json['status'] ) ) {
|
||||
$this->showError( esc_html__( 'Invalid response structure. Please contact us for support.', 'js_composer' ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( ! $json['status'] ) {
|
||||
$this->showError( esc_html__( 'Something went wrong. Please contact us for support.', 'js_composer' ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( $activation ) {
|
||||
if ( ! isset( $json['license_key'] ) || ! $this->isValidFormat( $json['license_key'] ) ) {
|
||||
$this->showError( esc_html__( 'Invalid response structure. Please contact us for support.', 'js_composer' ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->setLicenseKey( $json['license_key'] );
|
||||
|
||||
add_action( 'admin_notices', array(
|
||||
$this,
|
||||
'outputActivatedSuccess',
|
||||
) );
|
||||
} else {
|
||||
$this->setLicenseKey( '' );
|
||||
|
||||
add_action( 'admin_notices', array(
|
||||
$this,
|
||||
'outputDeactivatedSuccess',
|
||||
) );
|
||||
}
|
||||
|
||||
$this->setLicenseKeyToken( '' );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return boolean
|
||||
*/
|
||||
public function isActivated() {
|
||||
return (bool) $this->getLicenseKey();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check license key from remote
|
||||
*
|
||||
* Function is used by support portal to check if VC w/ specific license is still installed
|
||||
*/
|
||||
public function checkLicenseKeyFromRemote() {
|
||||
$license_key = vc_request_param( 'license_key' );
|
||||
|
||||
if ( ! $this->isValid( $license_key ) ) {
|
||||
$response = array(
|
||||
'status' => false,
|
||||
'error' => esc_html__( 'Invalid license key', 'js_composer' ),
|
||||
);
|
||||
} else {
|
||||
$response = array( 'status' => true );
|
||||
}
|
||||
|
||||
die( wp_json_encode( $response ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate action URL
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function generateActivationUrl() {
|
||||
$token = sha1( $this->newLicenseKeyToken() );
|
||||
$url = esc_url( self::getSiteUrl() );
|
||||
$redirect = esc_url( vc_updater()->getUpdaterUrl() );
|
||||
|
||||
return sprintf( '%s/activate-license?token=%s&url=%s&redirect=%s', self::$support_host, $token, $url, $redirect );
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate action URL
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function generateDeactivationUrl() {
|
||||
$license_key = $this->getLicenseKey();
|
||||
$token = sha1( $this->newLicenseKeyToken() );
|
||||
$url = esc_url( self::getSiteUrl() );
|
||||
$redirect = esc_url( vc_updater()->getUpdaterUrl() );
|
||||
|
||||
return sprintf( '%s/deactivate-license?license_key=%s&token=%s&url=%s&redirect=%s', self::$support_host, $license_key, $token, $url, $redirect );
|
||||
}
|
||||
|
||||
/**
|
||||
* Start activation process and output redirect URL as JSON
|
||||
*/
|
||||
public function startActivationResponse() {
|
||||
vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'manage_options' )->validateDie()->part( 'settings' )->can( 'vc-updater-tab' )->validateDie();
|
||||
|
||||
$response = array(
|
||||
'status' => true,
|
||||
'url' => $this->generateActivationUrl(),
|
||||
);
|
||||
|
||||
die( wp_json_encode( $response ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Start deactivation process and output redirect URL as JSON
|
||||
*/
|
||||
public function startDeactivationResponse() {
|
||||
vc_user_access()->checkAdminNonce()->validateDie( 'Failed nonce check' )->wpAny( 'manage_options' )->validateDie( 'Failed access check' )->part( 'settings' )->can( 'vc-updater-tab' )
|
||||
->validateDie( 'Failed access check #2' );
|
||||
|
||||
$response = array(
|
||||
'status' => true,
|
||||
'url' => $this->generateDeactivationUrl(),
|
||||
);
|
||||
|
||||
die( wp_json_encode( $response ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Set license key
|
||||
*
|
||||
* @param string $license_key
|
||||
*/
|
||||
public function setLicenseKey( $license_key ) {
|
||||
if ( vc_is_network_plugin() ) {
|
||||
update_site_option( 'wpb_js_' . self::$license_key_option, $license_key );
|
||||
} else {
|
||||
vc_settings()->set( self::$license_key_option, $license_key );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get license key
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLicenseKey() {
|
||||
if ( vc_is_network_plugin() ) {
|
||||
$value = get_site_option( 'wpb_js_' . self::$license_key_option );
|
||||
} else {
|
||||
$value = vc_settings()->get( self::$license_key_option );
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if specified license key is valid
|
||||
*
|
||||
* @param string $license_key
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isValid( $license_key ) {
|
||||
return $license_key === $this->getLicenseKey();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set up license activation notice if needed
|
||||
*
|
||||
* Don't show notice on dev environment
|
||||
*/
|
||||
public function setupReminder() {
|
||||
if ( self::isDevEnvironment() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$version1 = isset( $_COOKIE['vchideactivationmsg_vc11'] ) ? sanitize_text_field( wp_unslash( $_COOKIE['vchideactivationmsg_vc11'] ) ) : '';
|
||||
|
||||
if ( ! $this->isActivated() && ( empty( $version1 ) || version_compare( $version1, WPB_VC_VERSION, '<' ) ) && ! ( vc_is_network_plugin() && is_network_admin() ) ) {
|
||||
add_action( 'admin_notices', array(
|
||||
$this,
|
||||
'adminNoticeLicenseActivation',
|
||||
) );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if current enviroment is dev
|
||||
*
|
||||
* Environment is considered dev if host is:
|
||||
* - ip address
|
||||
* - tld is local, dev, wp, test, example, localhost or invalid
|
||||
* - no tld (localhost, custom hosts)
|
||||
*
|
||||
* @param string $host Hostname to check. If null, use HTTP_HOST
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public static function isDevEnvironment( $host = null ) {
|
||||
if ( ! $host ) {
|
||||
$host = self::getSiteUrl();
|
||||
}
|
||||
|
||||
$chunks = explode( '.', $host );
|
||||
|
||||
if ( 1 === count( $chunks ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ( in_array( end( $chunks ), array(
|
||||
'local',
|
||||
'dev',
|
||||
'wp',
|
||||
'test',
|
||||
'example',
|
||||
'localhost',
|
||||
'invalid',
|
||||
), true ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ( preg_match( '/^[0-9\.]+$/', $host ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function adminNoticeLicenseActivation() {
|
||||
if ( vc_is_network_plugin() ) {
|
||||
update_site_option( 'wpb_js_composer_license_activation_notified', 'yes' );
|
||||
} else {
|
||||
vc_settings()->set( 'composer_license_activation_notified', 'yes' );
|
||||
}
|
||||
$redirect = esc_url( vc_updater()->getUpdaterUrl() );
|
||||
$first_tag = 'style';
|
||||
$second_tag = 'script';
|
||||
// @codingStandardsIgnoreStart
|
||||
?>
|
||||
<<?php echo esc_attr( $first_tag ); ?>>
|
||||
.vc_license-activation-notice {
|
||||
position: relative;
|
||||
}
|
||||
</<?php echo esc_attr( $first_tag ); ?>>
|
||||
<<?php echo esc_attr( $second_tag ); ?>>
|
||||
(function ( $ ) {
|
||||
var setCookie = function ( c_name, value, exdays ) {
|
||||
var exdate = new Date();
|
||||
exdate.setDate( exdate.getDate() + exdays );
|
||||
var c_value = encodeURIComponent( value ) + ((null === exdays) ? "" : "; expires=" + exdate.toUTCString());
|
||||
document.cookie = c_name + "=" + c_value;
|
||||
};
|
||||
$( document ).off( 'click.vc-notice-dismiss' ).on( 'click.vc-notice-dismiss',
|
||||
'.vc-notice-dismiss',
|
||||
function ( e ) {
|
||||
e.preventDefault();
|
||||
var $el = $( this ).closest(
|
||||
'#vc_license-activation-notice' );
|
||||
$el.fadeTo( 100, 0, function () {
|
||||
$el.slideUp( 100, function () {
|
||||
$el.remove();
|
||||
} );
|
||||
} );
|
||||
setCookie( 'vchideactivationmsg_vc11',
|
||||
'<?php echo esc_attr( WPB_VC_VERSION ); ?>',
|
||||
30 );
|
||||
} );
|
||||
})( window.jQuery );
|
||||
</<?php echo esc_attr( $second_tag ); ?>>
|
||||
<?php
|
||||
echo '<div class="updated vc_license-activation-notice" id="vc_license-activation-notice"><p>' . sprintf( esc_html__( 'Hola! Would you like to receive automatic updates and unlock premium support? Please %sactivate your copy%s of WPBakery Page Builder.', 'js_composer' ), '<a href="' . esc_url( wp_nonce_url( $redirect ) ) . '">', '</a>' ) . '</p>' . '<button type="button" class="notice-dismiss vc-notice-dismiss"><span class="screen-reader-text">' . esc_html__( 'Dismiss this notice.', 'js_composer' ) . '</span></button></div>';
|
||||
|
||||
// @codingStandardsIgnoreEnd
|
||||
}
|
||||
|
||||
/**
|
||||
* Get license key token
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLicenseKeyToken() {
|
||||
$value = vc_is_network_plugin() ? get_site_option( self::$license_key_token_option ) : get_option( self::$license_key_token_option );
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set license key token
|
||||
*
|
||||
* @param string $token
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function setLicenseKeyToken( $token ) {
|
||||
if ( vc_is_network_plugin() ) {
|
||||
$value = update_site_option( self::$license_key_token_option, $token );
|
||||
} else {
|
||||
$value = update_option( self::$license_key_token_option, $token );
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return new license key token
|
||||
*
|
||||
* Token is used to change license key from remote location
|
||||
*
|
||||
* Format is: timestamp|20-random-characters
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function generateLicenseKeyToken() {
|
||||
$token = current_time( 'timestamp' ) . '|' . vc_random_string( 20 );
|
||||
|
||||
return $token;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate and set new license key token
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function newLicenseKeyToken() {
|
||||
$token = $this->generateLicenseKeyToken();
|
||||
|
||||
$this->setLicenseKeyToken( $token );
|
||||
|
||||
return $token;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if specified license key token is valid
|
||||
*
|
||||
* @param string $token_to_check SHA1 hashed token
|
||||
* @param int $ttl_in_seconds Time to live in seconds. Default = 20min
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function isValidToken( $token_to_check, $ttl_in_seconds = 1200 ) {
|
||||
$token = $this->getLicenseKeyToken();
|
||||
|
||||
if ( ! $token_to_check || sha1( $token ) !== $token_to_check ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$chunks = explode( '|', $token );
|
||||
|
||||
if ( intval( $chunks[0] ) < ( current_time( 'timestamp' ) - $ttl_in_seconds ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if license key format is valid
|
||||
*
|
||||
* license key is version 4 UUID, that have form xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx
|
||||
* where x is any hexadecimal digit and y is one of 8, 9, A, or B.
|
||||
*
|
||||
* @param string $license_key
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function isValidFormat( $license_key ) {
|
||||
$pattern = '/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i';
|
||||
|
||||
return (bool) preg_match( $pattern, $license_key );
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string|void
|
||||
*/
|
||||
/**
|
||||
* @return string|void
|
||||
*/
|
||||
public static function getSiteUrl() {
|
||||
if ( vc_is_network_plugin() ) {
|
||||
return network_site_url();
|
||||
} else {
|
||||
return site_url();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,165 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
die( '-1' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Manage role.
|
||||
* @since 4.8
|
||||
*
|
||||
* Class Vc_Roles
|
||||
*/
|
||||
class Vc_Roles {
|
||||
protected $post_types = false;
|
||||
protected $vc_excluded_post_types = false;
|
||||
protected $parts = array(
|
||||
'post_types',
|
||||
'backend_editor',
|
||||
'frontend_editor',
|
||||
'post_settings',
|
||||
'settings',
|
||||
'templates',
|
||||
'shortcodes',
|
||||
'grid_builder',
|
||||
'presets',
|
||||
'dragndrop',
|
||||
);
|
||||
|
||||
/**
|
||||
* Get list of parts
|
||||
* @return mixed
|
||||
*/
|
||||
public function getParts() {
|
||||
return apply_filters( 'vc_roles_parts_list', $this->parts );
|
||||
}
|
||||
|
||||
/**
|
||||
* Check required capability for this role to have user access.
|
||||
*
|
||||
* @param $part
|
||||
*
|
||||
* @return array|string
|
||||
*/
|
||||
public function getPartCapability( $part ) {
|
||||
return 'settings' !== $part ? array(
|
||||
'edit_posts',
|
||||
'edit_pages',
|
||||
) : 'manage_options';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $role
|
||||
* @param $caps
|
||||
* @return bool
|
||||
*/
|
||||
public function hasRoleCapability( $role, $caps ) {
|
||||
$has = false;
|
||||
$wp_role = get_role( $role );
|
||||
if ( is_string( $caps ) ) {
|
||||
$has = $wp_role->has_cap( $caps );
|
||||
} elseif ( is_array( $caps ) ) {
|
||||
$i = 0;
|
||||
$count = count( $caps );
|
||||
while ( false === $has && $i < $count ) {
|
||||
$has = $this->hasRoleCapability( $role, $caps[ $i ++ ] );
|
||||
}
|
||||
}
|
||||
|
||||
return $has;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \WP_Roles
|
||||
*/
|
||||
public function getWpRoles() {
|
||||
global $wp_roles;
|
||||
if ( function_exists( 'wp_roles' ) ) {
|
||||
return $wp_roles;
|
||||
} else {
|
||||
if ( ! isset( $wp_roles ) ) {
|
||||
// @codingStandardsIgnoreLine
|
||||
$wp_roles = new WP_Roles();
|
||||
}
|
||||
}
|
||||
|
||||
return $wp_roles;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $params
|
||||
* @return array
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function save( $params = array() ) {
|
||||
$data = array( 'message' => '' );
|
||||
$roles = $this->getWpRoles();
|
||||
$editable_roles = get_editable_roles();
|
||||
foreach ( $params as $role => $parts ) {
|
||||
if ( is_string( $parts ) ) {
|
||||
$parts = json_decode( stripslashes( $parts ), true );
|
||||
}
|
||||
if ( isset( $editable_roles[ $role ] ) ) {
|
||||
foreach ( $parts as $part => $settings ) {
|
||||
$part_key = vc_role_access()->who( $role )->part( $part )->getStateKey();
|
||||
$stateValue = '0';
|
||||
$roles->use_db = false; // Disable saving in DB on every cap change
|
||||
foreach ( $settings as $key => $value ) {
|
||||
if ( '_state' === $key ) {
|
||||
$stateValue = in_array( $value, array(
|
||||
'0',
|
||||
'1',
|
||||
), true ) ? (bool) $value : $value;
|
||||
} else {
|
||||
if ( empty( $value ) ) {
|
||||
$roles->remove_cap( $role, $part_key . '/' . $key );
|
||||
} else {
|
||||
$roles->add_cap( $role, $part_key . '/' . $key, true );
|
||||
}
|
||||
}
|
||||
}
|
||||
$roles->use_db = true; // Enable for the lat change in cap of role to store data in DB
|
||||
$roles->add_cap( $role, $part_key, $stateValue );
|
||||
}
|
||||
}
|
||||
}
|
||||
$data['message'] = esc_html__( 'Roles settings successfully saved.', 'js_composer' );
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array|bool
|
||||
*/
|
||||
public function getPostTypes() {
|
||||
if ( false === $this->post_types ) {
|
||||
$this->post_types = array();
|
||||
$exclude = $this->getExcludePostTypes();
|
||||
foreach ( get_post_types( array( 'public' => true ) ) as $post_type ) {
|
||||
if ( ! in_array( $post_type, $exclude, true ) ) {
|
||||
$this->post_types[] = array(
|
||||
$post_type,
|
||||
$post_type,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this->post_types;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool|mixed|void
|
||||
*/
|
||||
public function getExcludePostTypes() {
|
||||
if ( false === $this->vc_excluded_post_types ) {
|
||||
$this->vc_excluded_post_types = apply_filters( 'vc_settings_exclude_post_type', array(
|
||||
'attachment',
|
||||
'revision',
|
||||
'nav_menu_item',
|
||||
'mediapage',
|
||||
) );
|
||||
}
|
||||
|
||||
return $this->vc_excluded_post_types;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user