| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/public_html/wp-content/plugins/persian-woocommerce-sms/src/Settings/ |
Upload File : |
<?php
namespace PW\PWSMS\Settings;
defined( 'ABSPATH' ) || exit;
class API {
private $settings_sections = [];
private $settings_fields = [];
private $desc_style = 'style="margin-top:4px;color:#616161;font-style:italic;font-size:13px;line-height:25px;"';
public function __construct() {
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
}
public function admin_enqueue_scripts() {
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_media();
wp_enqueue_script( 'wp-color-picker' );
wp_enqueue_script( 'jquery' );
}
public function set_sections( $sections ) {
$this->settings_sections = $sections;
return $this;
}
public function add_section( $section ) {
$this->settings_sections[] = $section;
return $this;
}
public function set_fields( $fields ) {
$this->settings_fields = $fields;
return $this;
}
public function add_field( string $section, $field ) {
$defaults = [
'name' => '',
'label' => '',
'desc' => '',
'type' => 'text',
];
$this->settings_fields[ $section ][] = wp_parse_args( $field, $defaults );
return $this;
}
public function admin_init() {
foreach ( $this->settings_sections as $section ) {
if ( false == get_option( $section['id'] ) ) {
add_option( $section['id'] );
}
if ( isset( $section['desc'] ) && ! empty( $section['desc'] ) ) {
$section['desc'] = '<div class="inside">' . $section['desc'] . '</div>';
$callback = create_function( '',
'echo "' . str_replace( '"', '\"', esc_attr( $section['desc'] ) ) . '";' );
} else {
$callback = '__return_false';
}
add_settings_section( $section['id'], $section['title'], $callback, $section['id'] );
}
foreach ( $this->settings_fields as $section => $field ) {
foreach ( $field as $option ) {
$type = isset( $option['type'] ) ? $option['type'] : 'text';
$args = [
'id' => $option['name'],
'desc' => isset( $option['desc'] ) ? $option['desc'] : '',
'desc2' => isset( $option['desc2'] ) ? $option['desc2'] : '',
'label_for' => $type != 'html' && isset( $option['name'] ) ? $section . '[' . $option['name'] . ']' : '',
'name' => $option['label'],
'section' => $section,
'size' => isset( $option['size'] ) ? $option['size'] : null,
'row' => isset( $option['row'] ) ? $option['row'] : '',
'ltr' => isset( $option['ltr'] ) ? $option['ltr'] : false,
'options' => isset( $option['options'] ) ? $option['options'] : '',
'br' => isset( $option['br'] ) ? $option['br'] : '',
'std' => isset( $option['default'] ) ? $option['default'] : '',
'sanitize_callback' => isset( $option['sanitize_callback'] ) ? $option['sanitize_callback'] : '',
];
add_settings_field( $section . '[' . $option['name'] . ']', $option['label'], [
$this,
'callback_' . $type,
], $section, $section, $args );
}
}
foreach ( $this->settings_sections as $section ) {
register_setting( $section['id'], $section['id'], [ $this, 'sanitize_options' ] );
}
}
public function callback_text( $args ) {
$kses_pwootext = [
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'value' => [],
'style' => []
],
'div' => [
'class' => [],
'style' => []
],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'regular';
$style = '';
if ( ! empty( $args['ltr'] ) && $args['ltr'] === true ) {
$style .= 'text-align:left !important; direction:ltr !important;';
}
$html = sprintf( '<input type="text" class="%1$s-text" id="%2$s[%3$s]" name="%2$s[%3$s]" value="%4$s" style="%5$s"/>',
$size, $args['section'], $args['id'], $value, $style );
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_pwootext );
}
public function get_option( $option, $section, $default = '' ) {
$options = get_option( $section );
if ( isset( $options[ $option ] ) ) {
return $options[ $option ];
}
return $default;
}
public function callback_checkbox( $args ) {
$kses_pwoocheckbox = [
'label' => [
'for' => []
],
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'value' => [],
'checked' => []
],
'div' => [
'class' => [],
'style' => []
],
'p' => [],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$html = sprintf( '<input type="hidden" name="%1$s[%2$s]" value="off" />', $args['section'],
$args['id'] );
$html .= sprintf( '<input type="checkbox" class="checkbox" id="wpuf-%1$s[%2$s]" name="%1$s[%2$s]" value="on" %4$s />',
$args['section'], $args['id'], $value, checked( $value, 'on', false ) );
$html .= sprintf( '<label for="wpuf-%1$s[%2$s]"> %3$s</label>', $args['section'], $args['id'],
$args['desc'] );
if ( ! empty( $args['desc2'] ) ) {
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc2'] );
}
echo wp_kses( $html, $kses_pwoocheckbox );
}
public function callback_multicheck( $args ) {
$kses_pwoomulticheck = [
'label' => [
'for' => []
],
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'value' => [],
'checked' => []
],
'div' => [
'class' => [],
'style' => []
],
'p' => [],
'br' => [],
];
$value = $this->get_option( $args['id'], $args['section'], $args['std'] );
$html = '';
foreach ( $args['options'] as $key => $label ) {
$checked = isset( $value[ $key ] ) ? $value[ $key ] : '0';
$html .= sprintf( '<input type="checkbox" class="checkbox" id="wpuf-%1$s[%2$s][%3$s]" name="%1$s[%2$s][%3$s]" value="%3$s"%4$s />',
$args['section'], $args['id'], $key, checked( $checked, $key, false ) );
$html .= sprintf( '<label for="wpuf-%1$s[%2$s][%4$s]"> %3$s</label><br>', $args['section'], $args['id'],
$label, $key );
}
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_pwoomulticheck );
}
public function callback_radio( $args ) {
$kses_radio = [
'label' => [
'style' => [],
'style' => [],
'for' => []
],
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'checked' => [],
'value' => []
],
'div' => [
'class' => [],
'style' => []
],
'p' => [],
];
$value = $this->get_option( $args['id'], $args['section'], $args['std'] );
$html = '';
$style = is_rtl() ? 'margin-left:10px;' : 'margin-right:10px;';
foreach ( $args['options'] as $key => $label ) {
$html .= sprintf( '<label style="' . $style . '" for="wpuf-%s[%s][%s]">', $args['section'], $args['id'],
$key );
$html .= sprintf( '<input type="radio" class="radio inline" id="wpuf-%1$s[%2$s][%3$s]" name="%1$s[%2$s]" value="%3$s"%4$s />',
$args['section'], $args['id'], $key, checked( $value, $key, false ) ) . $label;
$html .= '</label>';
if ( ! empty( $args['br'] ) ) {
$html .= '<p></p>';
}
}
if ( ! empty( $args['br'] ) ) {
$html .= '<p></p>';
}
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_radio );
}
public function callback_select( $args ) {
$kses_select = [
'option' => [
'value' => [],
'style' => [],
'selected' => []
],
'select' => [
'class' => [],
'name' => [],
'id' => [],
'dir' => []
],
'div' => [
'class' => [],
'style' => []
],
'p' => [],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'wc-enhanced-select regular';
$ltr = ! empty( $args['ltr'] ) && $args['ltr'] === true ? 'dir="ltr"' : '';
$html = sprintf( '<div style="max-width:350px"><select class="%1$s" name="%2$s[%3$s]" id="%2$s[%3$s]" %4$s>',
$size, $args['section'], $args['id'], $ltr );
foreach ( $args['options'] as $key => $label ) {
$html .= sprintf( '<option value="%s" %s>%s</option>', $key, selected( $value, $key, false ), $label );
}
$html .= sprintf( '</select></div>' );
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_select );
}
public function callback_textarea( $args ) {
$kses_textarea = [
'textarea' => [
'rows' => [],
'style' => [],
'class' => [],
'id' => [],
'name' => []
],
'div' => [
'class' => [],
'style' => []
],
'br' => [],
];
$value = esc_textarea( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'regular';
$row = ! empty( $args['row'] ) ? $args['row'] : '6';
$style = 'width: 50%';
$html = sprintf( '<textarea rows="%6$s" style="%5$s" class="%1$s-text" id="%2$s[%3$s]" name="%2$s[%3$s]">%4$s</textarea>',
$size, $args['section'], $args['id'], $value, $style, $row );
$html .= sprintf( '<br><div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_textarea );
}
public function callback_html( $args ) {
$kses_description = [
'a' => [
'href' => [],
'onclick' => [],
'style' => []
],
'div' => [
'class' => [],
'style' => [],
],
'strong' => [],
'code' => [],
'br' => [],
];
echo sprintf( '<div class="description" ' . esc_attr( $this->desc_style ) . '> %s</div>',
wp_kses( $args['desc'], $kses_description ) );
}
public function callback_wysiwyg( $args ) {
$value = $this->get_option( $args['id'], $args['section'], $args['std'] );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : '500px';
echo '<div style="width: ' . esc_attr( $size ) . ';">';
wp_editor( $value, $args['section'] . '-' . $args['id'] . '', [
'teeny' => true,
'textarea_name' => $args['section'] . '[' . $args['id'] . ']',
'textarea_rows' => 10,
] );
echo '</div>';
echo sprintf( '<br><div class="description" ' . $this->desc_style . '> %s</div>', esc_attr( $args['desc'] ) );
}
public function callback_file( $args ) {
$kses_uploadfile = [
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'value' => []
],
'div' => [
'class' => [],
'style' => []
],
'br' => [],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'regular';
//$id = $args['section'] . '[' . $args['id'] . ']';
$html = sprintf( '<input type="text" class="%1$s-text pwoosms-url" id="%2$s[%3$s]" name="%2$s[%3$s]" value="%4$s"/>',
$size, $args['section'], $args['id'], $value );
$html .= '<input type="button" class="button pwoosms-browse" value="' . __( 'Browse' ) . '" />';
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_uploadfile );
}
public function callback_password( $args ) {
$kses_password = [
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'value' => []
],
'div' => [
'class' => [],
'style' => []
],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'regular';
$html = sprintf( '<input type="password" class="%1$s-text" id="%2$s[%3$s]" name="%2$s[%3$s]" value="%4$s"/>',
$size, $args['section'], $args['id'], $value );
$html .= sprintf( '<div class="description" ' . $this->desc_style . '> %s</div>', $args['desc'] );
echo wp_kses( $html, $kses_password );
}
public function callback_color( $args ) {
$kses_color = [
'input' => [
'type' => [],
'class' => [],
'id' => [],
'name' => [],
'data-default-color' => [],
'value' => []
],
'div' => [
'class' => [],
'style' => []
],
];
$value = esc_attr( $this->get_option( $args['id'], $args['section'], $args['std'] ) );
$size = isset( $args['size'] ) && ! is_null( $args['size'] ) ? $args['size'] : 'regular';
$html = sprintf( '<input type="text" class="%1$s-text wp-color-picker-field" id="%2$s[%3$s]" name="%2$s[%3$s]" value="%4$s" data-default-color="%5$s" />',
$size, $args['section'], $args['id'], $value, $args['std'] );
$html .= sprintf( '<div class="description" ' . $this->desc_style . ' style="display:block;"> %s</div>',
$args['desc'] );
echo wp_kses( $html, $kses_color );
}
public function sanitize_options( $options ) {
foreach ( $options as $option_slug => $option_value ) {
$sanitize_callback = $this->get_sanitize_callback( $option_slug );
if ( $sanitize_callback ) {
$options[ $option_slug ] = call_user_func( $sanitize_callback, $option_value );
continue;
}
}
return $options;
}
public function get_sanitize_callback( $slug = '' ) {
if ( empty( $slug ) ) {
return false;
}
foreach ( $this->settings_fields as $section => $options ) {
foreach ( $options as $option ) {
if ( $option['name'] != $slug ) {
continue;
}
return isset( $option['sanitize_callback'] ) && is_callable( $option['sanitize_callback'] ) ? $option['sanitize_callback'] : false;
}
}
return false;
}
public function show_navigation() {
$kses_navigation = [
'nav' => [
'class' => []
],
'a' => [
'href' => [],
'class' => [],
'id' => []
],
];
$html = '<nav class="nav-tab-wrapper woo-nav-tab-wrapper">';
$tab_number = 0;
foreach ( $this->settings_sections as $form ) {
$tab_number ++;
$class = '';
$tab = sanitize_key( $_GET['tab'] ?? null );
if ( empty( $tab ) ) {
if ( $tab_number == 1 ) {
$class = 'nav-tab-active';
}
} elseif ( stripos( $form['id'], $tab ) !== false ) {
$class = 'nav-tab-active';
}
$url = add_query_arg( [ 'tab' => str_ireplace( [ 'sms_', '_settings' ], '', $form['id'] ) ] );
$url = remove_query_arg( [
'settings-updated',
'paged',
'order',
'orderby',
's',
'action',
'_wpnonce',
'item',
'id',
'product_id',
'add',
'edit',
], $url );
$html .= sprintf( '<a href="%1$s" class="nav-tab %3$s" id="%1$s-tab">%2$s</a>', esc_url( $url ),
$form['title'], $class );
}
$html .= '</nav>';
echo wp_kses( $html, $kses_navigation );
}
public function show_forms() {
if ( defined( 'WC_VERSION' ) ) {
wp_enqueue_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css', [],
WC_VERSION );
wp_enqueue_script( 'wc-enhanced-select' );
}
if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == 'true' ) { ?>
<div class="notice notice-success below-h2">
<p><strong>تنظمیات ذخیره شدند.</strong></p>
</div>
<?php
} else {
do_action( 'pwoosms_settings_form_admin_notices' );
}
?>
<style>
table.form-table th {
padding-left: 24px !important;
position: relative;
width: 240px;
}
</style>
<?php
$tab_number = 0;
foreach ( $this->settings_sections as $form ) {
$show_form = false;
$tab_number ++;
$display = false;
$tab = sanitize_key( $_GET['tab'] ?? null );
if ( empty( $tab ) ) {
if ( $tab_number == 1 ) {
$display = true;
}
} elseif ( stripos( $form['id'], $tab ) !== false ) {
$display = true;
}
if ( empty( $display ) ) {
continue;
}
?>
<div id="<?php echo esc_attr( $form['id'] ); ?>" class="group">
<?php
if ( ! isset( $form['form_tag'] ) || $form['form_tag'] !== false ) :
$show_form = true; ?>
<form method="post" action="options.php">
<?php settings_fields( $form['id'] ); ?>
<?php endif; ?>
<?php
do_action( 'pwoosms_settings_form_top_' . $form['id'], $form );
do_settings_sections( $form['id'] );
do_action( 'pwoosms_settings_form_bottom_' . $form['id'], $form );
do_action( 'pwoosms_settings_form_submit_' . $form['id'], $form );
?>
<?php if ( ! empty( $show_form ) ) : ?>
<?php remove_all_actions( 'pwoosms_settings_form_submit_' . $form['id'] ); ?>
<div style="padding-right: 10px">
<?php submit_button(); ?>
</div>
</form>
<?php endif; ?>
</div>
<?php
break;
}
$this->script();
}
public function script() { ?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
/*
$('.group').hide();
var activetab = '';
if (typeof(localStorage) !== 'undefined') {
activetab = localStorage.getItem("activetab");
}
if (activetab !== '' && $(activetab).length) {
$(activetab).fadeIn();
} else {
$('.group:first').fadeIn();
}
if (activetab !== '' && $(activetab + '-tab').length) {
$(activetab + '-tab').addClass('nav-tab-active');
}
else {
$('.nav-tab-wrapper a:first').addClass('nav-tab-active');
}
$('.nav-tab-wrapper a').click(function (evt) {
$('.nav-tab-wrapper a').removeClass('nav-tab-active');
$(this).addClass('nav-tab-active').blur();
var clicked_group = $(this).attr('href');
if (typeof(localStorage) !== 'undefined') {
localStorage.setItem("activetab", $(this).attr('href'));
}
$('.group').hide();
$(clicked_group).fadeIn();
evt.preventDefault();
});*/
$('.wp-color-picker-field').wpColorPicker();
$('.group .collapsed').each(function () {
$(this).find('input:checked').parent().parent().parent().nextAll().each(
function () {
if ($(this).hasClass('last')) {
$(this).removeClass('hidden');
return false;
}
$(this).filter('.hidden').removeClass('hidden');
});
});
var file_frame = null;
$('.pwoosms-browse').on('click', function (event) {
event.preventDefault();
var self = $(this);
if (file_frame) {
file_frame.open();
return false;
}
file_frame = wp.media.frames.file_frame = wp.media({
title: self.data('uploader_title'),
button: {
text: self.data('uploader_button_text')
},
multiple: false
});
file_frame.on('select', function () {
var attachment = file_frame.state().get('selection').first().toJSON();
self.prev('.pwoosms-url').val(attachment.url);
});
file_frame.open();
});
});
</script>
<?php
}
}