| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/robotics/wp-content/plugins/types/library/toolset/types/includes/ |
Upload File : |
<?php
/*
* Settings form
*/
/**
* Settings form.
*
* @return string
*
* @deprecated to remove
*/
function wpcf_admin_general_settings_form()
{
$settings = wpcf_get_settings();
$form = array();
$form['#form']['callback'] = 'wpcf_admin_general_settings_form_submit';
$form['open-table'] = array(
'#type' => 'markup',
'#markup' => '<table class="form-table"><tbody>',
);
$form['images'] = array(
'#id' => 'add_resized_images_to_library',
'#name' => 'wpcf_settings[add_resized_images_to_library]',
'#title' => __('Images', 'wpcf'),
'#type' => 'checkbox',
'#label' => __('Add resized images to the media library', 'wpcf'),
'#description' => __('Types will automatically add the resized images as attachments to the media library.', 'wpcf'),
'#inline' => true,
'#default_value' => !empty($settings['add_resized_images_to_library']),
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><LABEL><DESCRIPTION>',
);
$form['images_remote'] = array(
'#title' => __('Remote Images', 'wpcf'),
'#id' => 'images_remote',
'#name' => 'wpcf_settings[images_remote]',
'#type' => 'checkbox',
'#label' => __('Allow resizing of remote images', 'wpcf'),
'#description' => __('Types will try to scale remote images.', 'wpcf'),
'#inline' => true,
'#default_value' => !empty($settings['images_remote']),
'#pattern' => '<br /><ELEMENT><LABEL><DESCRIPTION>',
);
$form['images_remote_clear'] = array(
'#id' => 'images_remote_cache_time',
'#name' => 'wpcf_settings[images_remote_cache_time]',
'#type' => 'select',
'#title' => __('Images cache', 'wpcf'),
'#pattern' => sprintf(
'<br />%s',
__('Invalidate cached images that are more than <ELEMENT> hours old.', 'wpcf')
),
'#options' => array(
__('Never', 'wpcf') => '0',
'24' => '24',
'36' => '36',
'48' => '48',
'72' => '72',
),
'#inline' => true,
'#default_value' => intval($settings['images_remote_cache_time']),
);
$form['clear_images_cache'] = array(
'#type' => 'submit',
'#name' => 'clear-cache-images',
'#id' => 'clear-cache-images',
'#attributes' => array('id' => 'clear-cache-images','class' => 'button-secondary'),
'#value' => __('Clear Cached Images', 'wpcf'),
'#inline' => true,
'#pattern' => '<br /><ELEMENT>',
);
$form['clear_images_cache_outdated'] = array(
'#id' => 'clear-cache-images-outdated',
'#type' => 'submit',
'#name' => 'clear-cache-images-outdated',
'#attributes' => array('id' => 'clear-cache-images-outdated','class' => 'button-secondary'),
'#value' => __('Clear Outdated Cached Images', 'wpcf'),
'#inline' => true,
'#pattern' => ' <ELEMENT></td></tr>',
);
if (function_exists('icl_register_string')) {
$form['register_translations_on_import'] = array(
'#id' => 'register_translations_on_import',
'#name' => 'wpcf_settings[register_translations_on_import]',
'#type' => 'checkbox',
'#title' => __('WPML Integration', 'wpcf'),
'#label' => __("When importing, add texts to WPML's String Translation table", 'wpcf'),
'#inline' => true,
'#default_value' => !empty($settings['register_translations_on_import']),
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><LABEL><DESCRIPTION></td></th>',
'#inline' => true,
);
}
$form['help-box'] = array(
'#id' => 'help_box',
'#name' => 'wpcf_settings[help_box]',
'#type' => 'radios',
'#options' => array(
'all' => array(
'#value' => 'all',
'#title' => __("Show promotional messages on all custom post editing screens and on all Types create/edit pages", 'wpcf')
),
'by_types' => array(
'#value' => 'by_types',
'#title' => __("Show promotional messages only on post types that were created by Types and on all Types create/edit pages", 'wpcf')
),
'no' => array(
'#value' => 'no',
'#title' => __("Don't show promotional messages anywhere", 'wpcf')
),
),
'#inline' => true,
'#default_value' => $settings['help_box'],
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><DESCRIPTION></td></th>',
'#title' => __('Help Box', 'wpcf'),
);
$form['hide_standard_custom_fields_metabox'] = array(
'#id' => 'hide_standard_custom_fields_metabox',
'#name' => 'wpcf_settings[hide_standard_custom_fields_metabox]',
'#type' => 'radios',
'#options' => array(
'all' => array(
'#value' => 'show',
'#title' => __('Show standard WordPress Custom Field Metabox', 'wpcf')
),
'by_types' => array(
'#value' => 'hide',
'#title' => __('Hide standard WordPress Custom Field Metabox', 'wpcf')
),
),
'#inline' => true,
'#default_value' => preg_match('/^(show|hide)$/', $settings['hide_standard_custom_fields_metabox'])? $settings['hide_standard_custom_fields_metabox']:'show',
'#title' => __('Custom Field Metabox', 'wpcf'),
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><DESCRIPTION></td></th>',
);
/* This is obsolete with our new way to handle these messages (see types-508)
if ( !WPCF_Types_Marketing_Messages::check_register() ) {
$form['toolset_messages'] = array(
'#id' => 'toolset_messages',
'#name' => 'wpcf_settings[toolset_messages]',
'#type' => 'checkbox',
'#label' => __('Disable all messages about other Toolset components', 'wpcf'),
'#default_value' => isset($settings['toolset_messages'])? intval($settings['toolset_messages']):0,
'#title' => __('Toolset Messages', 'wpcf'),
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><LABEL><DESCRIPTION></td></th>',
'#inline' => true,
);
}
*/
$form['postmeta-unfiltered-html'] = array(
'#id' => 'postmeta_unfiltered_html',
'#name' => 'wpcf_settings[postmeta_unfiltered_html]',
'#type' => 'radios',
'#title' => __('Custom fields - unfiltered HTML', 'wpcf'),
'#options' => array(
'on' => array(
'#value' => 'on',
'#title' => __('Allow saving unfiltered HTML in Types custom fields for users with higher roles', 'wpcf'),
),
'off' => array(
'#value' => 'off',
'#title' => __('Disallow saving unfiltered HTML in Types custom fields for all users', 'wpcf'),
),
),
'#inline' => false,
'#default_value' => $settings['postmeta_unfiltered_html'],
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><DESCRIPTION></td></th>',
);
$form['usermeta-unfiltered-html'] = array(
'#id' => 'usermeta_unfiltered_html',
'#name' => 'wpcf_settings[usermeta_unfiltered_html]',
'#type' => 'radios',
'#title' => __('Usermeta fields - unfiltered HTML', 'wpcf'),
'#options' => array(
'on' => array(
'#value' => 'on',
'#title' => __("Allow saving unfiltered HTML in Types usermeta fields for users with higher roles", 'wpcf'),
),
'off' => array(
'#value' => 'off',
'#title' => __("Disallow saving unfiltered HTML in Types usermeta fields for all users", 'wpcf')
),
),
'#inline' => false,
'#default_value' => $settings['usermeta_unfiltered_html'],
'#pattern' => '<tr><th scope="row"><TITLE></th><td><ELEMENT><DESCRIPTION></td></th>',
);
$form['open-close'] = array(
'#type' => 'markup',
'#markup' => '</tbody></table>',
);
$form['submit'] = array(
'#type' => 'submit',
'#name' => 'submit',
'#attributes' => array('id'=>'general-settings-submit','class' => 'button-primary'),
'#value' => __('Save Changes', 'wpcf'),
);
return $form;
}
/**
* Saves settings.
*
* @param type $form
*/
function wpcf_admin_general_settings_form_submit($form)
{
if (isset($_POST['clear-cache-images']) || isset($_POST['clear-cache-images-outdated'])) {
require_once WPCF_EMBEDDED_INC_ABSPATH . '/fields/image.php';
$cache_dir = wpcf_fields_image_get_cache_directory(true);
if (is_wp_error($cache_dir)) {
wpcf_admin_message_store($cache_dir->get_error_message());
} else {
if (isset($_POST['clear-cache-images'])) {
wpcf_fields_image_clear_cache($cache_dir, 'all');
} else {
wpcf_fields_image_clear_cache($cache_dir);
}
wpcf_admin_message_store(__('Images cache cleared', 'wpcf'));
}
return true;
}
$settings = wpcf_get_settings();
$data = $_POST['wpcf_settings'];
$keys = array(
'add_resized_images_to_library' => 'esc_html',
'help_box' => 'esc_html',
'hide_standard_custom_fields_metabox' => 'esc_html',
'images_remote' => 'intval',
'images_remote_cache_time' => 'intval',
'register_translations_on_import' => 'esc_html',
'toolset_messages' => 'intval',
'postmeta_unfiltered_html' => 'on-off',
'usermeta_unfiltered_html' => 'on-off',
);
foreach ( $keys as $key => $validation) {
if (!isset($data[$key])) {
$settings[$key] = 0;
} else {
switch($validation) {
case 'intval':
$settings[$key] = intval($data[$key]);
break;
case 'on-off':
if ( preg_match( '/^(on|off)$/', $data[$key])) {
$settings[$key] = $data[$key];
} else {
$settings[$key] = 'off';
}
break;
case 'esc_html':
default:
$settings[$key] = esc_html($data[$key]);
break;
}
}
}
/**
* validate hide_standard_custom_fields_metabox
*/
if ( !preg_match('/^(show|hide)$/', $settings['hide_standard_custom_fields_metabox']) ) {
$settings['hide_standard_custom_fields_metabox'] = 'show';
}
/**
* update_option
*/
update_option('wpcf_settings', $settings);
wpcf_admin_message_store(__('Settings saved.', 'wpcf'));
}