| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/phoenix-media-rename/classes/ |
Upload File : |
<?php
/*
* Phoenix Media Rename settings
*
*/
class phoenix_media_rename_settings_page
{
/**
* Holds the values to be used in the fields callbacks
*/
private $options;
/**
* Start up
*/
public function __construct()
{
add_action('admin_menu', array($this, 'add_pmr_settings_page'));
add_action('admin_init', array($this, 'page_init'));
add_option('pmr_options', array(
'pmr_update_revisions' => true,
'pmr_sanitize_filenames' => true,
'pmr_remove_accents' => true,
'pmr_filename_lowercase' => true,
'pmr_debug_mode' => false,
'pmr_create_redirection' => false,
'pmr_serialize_if_filename_present' => true,
'pmr_category_filename_header' => false,
'pmr_filename_header' => '',
'pmr_category_filename_trailer' => false,
'pmr_filename_trailer' => '',
'pmr_enable_alttext_integration' => false
), '', 'yes');
add_filter('plugin_action_links_'. PHOENIX_MEDIA_RENAME_BASENAME, array($this, 'pmr_add_action_links'));
}
function pmr_add_action_links ($links) {
$mylinks = array(
'<a href="' . admin_url('options-general.php?page=pmr-setting-admin') . '">'. __('Settings', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')) .'</a>',
'<a href="https://paypal.me/crossi72" target="_blank">'. __('Donate to this plugin', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')) .'</a>',
);
return array_merge($links, $mylinks);
}
/**
* Add options page
*/
public function add_pmr_settings_page()
{
// This page will be under "Settings"
add_options_page(
__('Settings Admin', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')),
'Phoenix Media Rename',
'manage_options',
'pmr-setting-admin',
array($this, 'create_admin_page')
);
}
/**
* Options page callback
*/
public function create_admin_page()
{
// Set class property
$this->options = get_option('pmr_options');
?>
<div class="wrap">
<h1><?php esc_html_e('Phoenix Media Rename Settings', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')); ?></h1>
<form method="post" action="options.php">
<?php
// This prints out all hidden setting fields
settings_fields('pmr_option_group');
do_settings_sections('pmr-setting-admin');
submit_button();
?>
</form>
</div>
<?php
}
/**
* Register and add settings
*/
public function page_init()
{
register_setting(
'pmr_option_group', // Option group
'pmr_options', // Option name
array($this, 'sanitize') // Sanitize
);
add_settings_section(
'setting_section_revisions_media_rename', // pmr_update_revisions
__('Revisions', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_section_revisions_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_update_revisions', // ID
__('Update Revisions', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_update_revisions_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_revisions_media_rename' // Section
);
add_settings_section(
'setting_section_convert_to_lowercase_media_rename', // pmr_filename_lowercase
__('Convert to lowercase', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_filename_lowercase_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_filename_lowercase', // ID
__('Convert post name to lowercase', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_filename_lowercase_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_convert_to_lowercase_media_rename' // Section
);
add_settings_section(
'setting_section_sanitize_filename_media_rename', // pmr_update_revisions
__('Sanitize', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_sanitize_filename_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_sanitize_filenames', // ID
__('Sanitize filenames', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_sanitize_filenames_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_sanitize_filename_media_rename' // Section
);
add_settings_field(
'pmr_remove_accents', // ID
__('Remove accents', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_remove_accents_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_sanitize_filename_media_rename' // Section
);
add_settings_section(
'setting_section_debug_mode_media_rename', // pmr_update_revisions
__('Debug', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_debug_mode_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_debug_mode', // ID
__('Debug mode', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_debug_mode_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_debug_mode_media_rename' // Section
);
add_settings_section(
'setting_section_create_redirection_media_rename', // pmr_create_redirection
__('Redirection', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_create_redirection_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_create_redirection', // ID
__('Create 301 redirection', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_create_redirection_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_create_redirection_media_rename' // Section
);
add_settings_section(
'setting_section_serialize_if_present_media_rename', // pmr_serialize_if_filename_present
__('Serialization', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_serialize_if_present_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_serialize_if_filename_present', // ID
__('Serialize filename if file exists', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_serialize_if_filename_present_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_serialize_if_present_media_rename' // Section
);
add_settings_section(
'setting_section_filename', // pmr_filename_header
__('Filename constants', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_create_filename_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_category_filename_header', // ID
__('Use category as filename header', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_category_filename_header_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_filename' // Section
);
add_settings_field(
'pmr_filename_header', // ID
__('Filename header', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_filename_header_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_filename' // Section
);
add_settings_field(
'pmr_category_filename_trailer', // ID
__('Use category as filename trailer', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_category_filename_trailer_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_filename' // Section
);
add_settings_field(
'pmr_filename_trailer', // ID
__('Filename trailer', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_filename_trailer_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_filename' // Section
);
add_settings_section(
'setting_section_integrations', // ID
__('Integrations', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'print_create_integrations_section_info'), // Callback
'pmr-setting-admin' // Page
);
add_settings_field(
'pmr_enable_alttext_integration', // pmr_enable_alttext_integration
__('AltText.ai', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN')), // Title
array($this, 'pmr_enable_alttext_integration_callback'), // Callback
'pmr-setting-admin', // Page
'setting_section_integrations' // Section
);
}
/**
* Sanitize each setting field as needed
*
* @param array $input Contains all settings fields as array keys
*/
public function sanitize($input) {
if(!is_array($input) || empty($input) || (false === $input)) {
$new_input['pmr_update_revisions'] = false;
$new_input['pmr_remove_accents'] = false;
$new_input['pmr_filename_lowercase'] = false;
$new_input['pmr_sanitize_filenames'] = false;
$new_input['pmr_debug_mode'] = false;
$new_input['pmr_create_redirection'] = false;
$new_input['pmr_serialize_if_filename_present'] = false;
$new_input['pmr_category_filename_header'] = false;
$new_input['pmr_filename_header'] = '';
$new_input['pmr_category_filename_trailer'] = false;
$new_input['pmr_filename_trailer'] = '';
$new_input['pmr_enable_alttext_integration'] = false;
}
$this->sanitize_boolean($input, 'pmr_update_revisions', $new_input);
$this->sanitize_boolean($input, 'pmr_remove_accents', $new_input);
$this->sanitize_boolean($input, 'pmr_filename_lowercase', $new_input);
$this->sanitize_boolean($input, 'pmr_sanitize_filenames', $new_input);
$this->sanitize_boolean($input, 'pmr_debug_mode', $new_input);
$this->sanitize_boolean($input, 'pmr_create_redirection', $new_input);
$this->sanitize_boolean($input, 'pmr_serialize_if_filename_present', $new_input);
$this->sanitize_boolean($input, 'pmr_category_filename_header', $new_input);
$this->sanitize_text($input, 'pmr_filename_header', $new_input);
$this->sanitize_boolean($input, 'pmr_category_filename_trailer', $new_input);
$this->sanitize_text($input, 'pmr_filename_trailer', $new_input);
$this->sanitize_text($input, 'pmr_enable_alttext_integration', $new_input);
return $new_input;
}
/**
* Sanitize a boolean field
*
* @param array $array associative array containing the variable
* @param string $variable array key corresponding to variable
* @param array $result variable to set with che variable value
* @return void
*/
public function sanitize_boolean($array, $variable, &$result){
if(isset($array[$variable]) && (1 == $array[$variable])){
$result[$variable] = true;
} else {
$result[$variable] = false;
}
}
/**
* Sanitize a text field
*
* @param array $array associative array containing the variable
* @param string $variable array key corresponding to variable
* @param array $result variable to set with che variable value
* @return void
*/
public function sanitize_text($array, $variable, &$result){
if(isset($array[$variable])){
$result[$variable] = $array[$variable];
} else {
$result[$variable] = '';
}
}
/**
* Print the Section text
*/
public function print_section_revisions_info()
{
print __('Check to processing revisions, uncheck to avoid processing revisions:', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_remove_accent_section_info()
{
print __('Check to remove accents from file name, uncheck to leave accents:', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_filename_lowercase_section_info()
{
print __('Check to convert post title to lowercase when using the action "Rename from post":', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_sanitize_filename_section_info()
{
print __('Check to sanitize file name, uncheck to leave filename as entered by user:<br><strong>Please Note</strong>: disabling this option can generate filenames that are incompatible with the server, disable at your own risk!<br><strong>Please Note</strong>: if "Sanitize filenames" is active, "Remove accents" cannot be disabled!', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_debug_mode_section_info()
{
print __('Check to enable debug mode, this will allow full error messages to appear during the rename process:', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_create_redirection_section_info()
{
print __('Check to enable 301 redirection, this will create a 301 redirection after file renaming:<br><strong>Please Note</strong>: the free plugin <a href="https://wordpress.org/plugins/redirection/" target="_blank"> Redirection</a> is required to manage the 301 redirection.', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_serialize_if_present_section_info()
{
print __('Check to serialize filename if exists: this will create a new filename with a progressive number at the end', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_create_filename_section_info()
{
print __('Add constant values to the beginning and end of the file name, these values will be added automatically to each renamed file.', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Print the Section text
*/
public function print_create_integrations_section_info()
{
print __('Enable integration with other plugins.', constant('PHOENIX_MEDIA_RENAME_TEXT_DOMAIN'));
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_update_revisions_callback()
{
$value = $this->get_value_checkbox('pmr_update_revisions', true);
echo '<input type="checkbox" id="pmr_update_revisions" name="pmr_options[pmr_update_revisions]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_remove_accents_callback()
{
$value = $this->get_value_checkbox('pmr_remove_accents', true);
echo '<input type="checkbox" id="pmr_remove_accents" name="pmr_options[pmr_remove_accents]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_filename_lowercase_callback()
{
$value = $this->get_value_checkbox('pmr_filename_lowercase', true);
echo '<input type="checkbox" id="pmr_filename_lowercase" name="pmr_options[pmr_filename_lowercase]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_sanitize_filenames_callback()
{
$value = $this->get_value_checkbox('pmr_sanitize_filenames', true);
echo '<input type="checkbox" id="pmr_sanitize_filenames" name="pmr_options[pmr_sanitize_filenames]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_debug_mode_callback()
{
$value = $this->get_value_checkbox('pmr_debug_mode', false);
echo '<input type="checkbox" id="pmr_debug_mode" name="pmr_options[pmr_debug_mode]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_create_redirection_callback()
{
$value = $this->get_value_checkbox('pmr_create_redirection', false);
echo '<input type="checkbox" id="pmr_create_redirection" name="pmr_options[pmr_create_redirection]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_serialize_if_filename_present_callback()
{
$value = $this->get_value_checkbox('pmr_serialize_if_filename_present', false);
echo '<input type="checkbox" id="pmr_serialize_if_filename_present" name="pmr_options[pmr_serialize_if_filename_present]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_category_filename_header_callback()
{
$value = $this->get_value_checkbox('pmr_category_filename_header', false);
echo '<input type="checkbox" id="pmr_category_filename_header" name="pmr_options[pmr_category_filename_header]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_filename_header_callback()
{
$value = $this->get_value_textbox('pmr_filename_header');
echo '<input type="text" id="pmr_filename_header" name="pmr_options[pmr_filename_header]" value="'. $value . '"//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_category_filename_trailer_callback()
{
$value = $this->get_value_checkbox('pmr_category_filename_trailer', false);
echo '<input type="checkbox" id="pmr_category_filename_trailer" name="pmr_options[pmr_category_filename_trailer]" value="1" ' . $value . '//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_filename_trailer_callback()
{
$value = $this->get_value_textbox('pmr_filename_trailer');
echo '<input type="text" id="pmr_filename_trailer" name="pmr_options[pmr_filename_trailer]" value="'. $value . '"//>';
}
/**
* Get the settings option array and print one of its values
*/
public function pmr_enable_alttext_integration_callback()
{
$value = $this->get_value_checkbox('pmr_enable_alttext_integration', false);
echo '<input type="checkbox" id="pmr_enable_alttext_integration" name="pmr_options[pmr_enable_alttext_integration]" value="1" ' . $value . '//>';
}
/**
* Get a checked status from the array containing the options
*
* @param string $variable name of the variable to get
* @param bool $default default value for variable to get\
* @return checked
*/
private function get_value_checkbox($variable, $default){
if (isset($this->options[$variable])){
$checkstate = esc_attr($this->options[$variable]);
} else {
$checkstate = $default;
}
$value = checked(1, $checkstate, false);
return $value;
}
/**
* Get a text from the array containing the options
*
* @param string $variable name of the variable to get
* @return checked
*/ private function get_value_textbox($variable){
$value = isset($this->options[$variable]) ? esc_attr($this->options[$variable]) : '';
return $value;
}
}
if(is_admin())
$pmr_settings_page = new phoenix_media_rename_settings_page();