File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/maxbuttons/includes/maxbuttons-settings.php
<?php
namespace MaxButtons;
defined('ABSPATH') or die('No direct access permitted');

// settings for this page are registered in register_setting ( main class )

$button = MB()->getClass('button'); // To load maxfield templates

$admin = MB()->getClass('admin');
$page_title = __("Settings","maxbuttons");
$admin->get_header(array("tabs_active" => true, "title" => $page_title) );

$post_nonce_field = wp_nonce_field('action-settings-form', 'maxbuttons-settings-nonce', true, false);
?>


<div class="mb_tab"> <!-- first tab --->
        <div class="title">
	        <span class="dashicons dashicons-list-view"></span>
			<span class='title'><?php _e('Settings', 'maxbuttons') ?></span>
        </div>
        <div class="option-container">
            <div class="title"><?php _e('Settings','maxbuttons'); ?></div>
            <div class="inside">

		       <form method="post" action="options.php">
                 <div class="option-design">

                            <?php settings_fields( 'maxbuttons_settings' ); ?>
                            <label><?php _e('MaxButtons User Level for editing buttons', 'maxbuttons') ?></label>
                            <div class="input">
                                <select name="maxbuttons_user_level">
                                    <?php $maxbuttons_user_level = get_option('maxbuttons_user_level'); ?>
                                    <option value="edit_posts" <?php if($maxbuttons_user_level === 'edit_posts') { echo 'selected="selected"'; } ?>>Contributor</option>
                                    <option value="edit_published_posts" <?php if($maxbuttons_user_level === 'edit_published_posts') { echo 'selected="selected"'; } ?>>Author</option>
                                    <option value="manage_categories" <?php if($maxbuttons_user_level === 'manage_categories') { echo 'selected="selected"'; } ?>>Editor</option>
                                    <option value="manage_options" <?php if($maxbuttons_user_level === 'manage_options') { echo 'selected="selected"'; } ?>>Administrator</option>
                                </select>
                                <br />
                                <?php printf( __('For more details on user roles and permissions, click %s here%s.','maxbuttons'),
                                '<a target="_blank" href="https://codex.wordpress.org/Roles_and_Capabilities">',
                                "</a>");
                                ?>

                            </div>

                        <div class="clear"></div>
                    </div><!-- option-design -->

                     <div class="option-design">
                        <?php
					    $option_noshow = get_option('maxbuttons_noshowtinymce');

				    $nomce = new maxField('switch');
						$nomce->label = __('Hide "add button" in post editor toolbar', 'maxbuttons');
						$nomce->name = 'maxbuttons_noshowtinymce';
						$nomce->id = $nomce->name;
						$nomce->value = '1';
						$nomce->checked = checked($option_noshow, 1, false);
						echo $nomce->output ('start','end');
						?>

                     </div>

                     <?php
                     	$option_minify = get_option("maxbuttons_minify", 1);
                     	$option_description_hide = get_option('maxbuttons_hidedescription',0);
                     	$option_borderbox = get_option('maxbuttons_borderbox', 0);

                     ?>
                     <div class="option-design">
                     	<?php
		                 	$minify = new maxField('switch');
		                 	$minify->note =  __('Recommended, only turn off in case of issues. You will have to clear your cache after changing this setting', 'maxbuttons') ;
							$minify->label = __('Minify Button CSS', 'maxbuttons');
							$minify->name = 'maxbuttons_minify';
							$minify->id = $minify->name;
							$minify->value = '1';
							$minify->checked = checked($option_minify, 1, false);
							echo $minify->output ('start','end');
						?>
                     </div>

                    <div class="option-design">
                         <?php
		                 	$desc = new maxField('switch');
							$desc->label = __('Hide description field', 'maxbuttons');
							$desc->name = 'maxbuttons_hidedescription';
							$desc->id = $desc->name;
							$desc->value = '1';
							$desc->checked = checked($option_description_hide, 1, false);
							echo $desc->output ('start','end');
						?>
                     </div>

                     <div class='option-design'>
                     	<?php
                     		$bbox = new maxField('switch');
                     		$bbox->label = __('Preview in Border Box mode','maxbuttons');
                     		$bbox->note =  __('A lot of modern themes render their templates as "border box". If you notice that padding
                     						   and borders looks differently on the site compared to preview, try to turn this option on', 'maxbuttons');
                     		$bbox->name = 'maxbuttons_borderbox';
                     		$bbox->id = $bbox->name;
                     		$bbox->value = '1';
                     		$bbox->checked = checked($option_borderbox, 1, false);
                        echo $bbox->output('start','end');
                     	?>
                     </div>
<hr>
                     <div class='option-design'>
                     	<?php
                      $option_autoresponsive = get_option('maxbuttons_autoresponsive', 1);
                     		$autor = new maxField('switch');
                     		$autor->label = __('Apply auto-responsive','maxbuttons');
                     		$autor->note =  __('Active when a button doesn\'t have any responsive screens. Autoresponsive makes the button smaller and relative to the screen on devices smaller than 480px. When enabled, it automatically applies this styling.', 'maxbuttons');
                     		$autor->name = 'maxbuttons_autoresponsive';
                     		$autor->id = $autor->name;
                     		$autor->value = '1';
                     		$autor->checked = checked($option_autoresponsive, 1, false);
                        echo $autor->output('start','end');


                        $condition = array('target' => $autor->id, 'values' => 'checked');
                        $conditional = htmlentities(json_encode($condition));

                        $option_autorfont = get_option('maxbuttons_autor_font', 80);

                        $autorfont = new maxField('number');
                        $autorfont->id = 'maxbuttons_autor_font';
                        $autorfont->name = $autorfont->id;
                        $autorfont->value = $option_autorfont;
                        $autorfont->label = __('Auto font size reduction', 'maxbuttons');
                        $autorfont->start_conditional = $conditional;
                        $autorfont->inputclass = 'tiny';
                        $autorfont->after_input = __('%', 'maxbuttons');
                        echo $autorfont->output('start', 'end');

                        $option_autorwidth = get_option('maxbuttons_autor_width', 90);

                        $autorwidth = new maxField('number');
                        $autorwidth->id = 'maxbuttons_autor_width';
                        $autorwidth->name = $autorwidth->id;
                        $autorwidth->value = $option_autorwidth;
                        $autorwidth->label = __('Auto button size on screen', 'maxbuttons');
                        $autorwidth->start_conditional = $conditional;
                        $autorwidth->inputclass = 'tiny';
                        $autorwidth->note = __('The button will resize to this amount of percentage of the screen width. Default 90%', 'maxbuttons');
                        $autorwidth->after_input = __('%', 'maxbuttons');
                        echo $autorwidth->output('start', 'end');


                     	?>
                     </div>
<hr />
                     <div class='option-design'>
                     <?php
                  /*   	$option_forcefa = get_option('maxbuttons_forcefa');

                     	$fa = new maxField('switch');
                 		$fa->label = __('FontAwesome conflict mode', 'maxbuttons');
                 		$fa->note = __('If other plugins are conflicting with FontAwesome, tries to force plugin version.');
                 		$fa->name = 'maxbuttons_forcefa';
                 		$fa->id = $fa->name;
                 		$fa->value = '1';
                 		$fa->checked = checked($option_forcefa, 1, false);
                 		$fa->output('start','end'); */

                    $prot = new maxField('text');
                    $prot->id = 'maxbuttons_protocol';
                    $prot->name = $prot->id;
                    $prot->value = get_option('maxbuttons_protocol');
                    $prot->label = __('Additional allowed link protocols', 'maxbuttons');
                    $prot->note = __('Separate multiple protocols with comma', 'maxbuttons');
                    $prot->help = __('You can add link formats not regarded as "safe" by WordPress. Use this if links are removed or lose their protocol ( xx:// ). For instance: "file,sms,skype" .', 'maxbuttons');

                    echo $prot->output('start', 'end');
                 	?>
                 	</div>


             		<?php do_action("maxbuttons_settings_end"); ?>
                      <?php submit_button(); ?>
        	   </form>
     	   </div>
		</div>


        <form method="POST">
        	<input type="hidden" name="reset_cache" value="true" />
					<?php echo $post_nonce_field ?>
        	<div class="option-container">
        		<div class="title"><?php _e("Clear button cache","maxbuttons"); ?></div>
        		<div class="inside">
        			<p><?php _e("Maxbuttons caches the style output allowing for lightning fast display of your buttons. In the event
        			this cache needs to be flushed and rebuilt you can reset the cache here.","maxbuttons"); ?></p>
        			 <?php submit_button(__("Reset Cache", "maxbuttons") ); ?>
        		</div>
        	</div>
      </form>

</div> <!-- /first tab --->
<div class="mb_tab"><!-- advanced tab -->
              <div class="title">
		        <span class="dashicons dashicons-list-view"></span>
				<span class='title'><?php _e('Advanced', 'maxbuttons') ?></span>
            </div>

        <form method="POST">
			 <?php echo $post_nonce_field ?>
      <div class="option-container">

              	<input type="hidden" name="remigrate" value="true" />
      	<div class="title"><?php _e("Retry Database migration","maxbuttons"); ?></div>
      	<div class="inside"><p><?php _e("In case the upgrade functionality failed to move your old buttons from MaxButtons before version 3, you can do so here manually. <strong>Attention</strong>  The new database table (maxbuttonsv3) *must* be empty, and the old database table *must* contain buttons otherwise this will not run. Run this <strong>at your own risk</strong> - it is strongly advised to make a backup before doing so.", "maxbuttons"); ?></p>
      	 <?php submit_button(__("Remigrate", "maxbuttons") ); ?>
      	</div>


        </div>
  		</form>

      <form method="POST">
		  <?php echo $post_nonce_field ?>
    <div class="option-container">

      <input type="hidden" name="remigrateresponsive" value="true" />
      <div class="title"><?php _e("Retry Responsive Migration","maxbuttons"); ?></div>
      <div class="inside"><p><?php _e("In case you still have legacy responsive data ( before version 8 ) and this was not migrated for some reason.  <strong>Warning</strong> Create a database backup. Use at your own risk. ", "maxbuttons"); ?></p>
       <?php submit_button(__("Remigrate Responsive", "maxbuttons") ); ?>
      </div>

    </div>
    </form>




            <div class="option-container">
                <div class="title"><?php _e('UTF8 Table Fix', 'maxbuttons') ?></div>
                <div class="inside">
                    <div class="option-design" >
                        <h3 class="alert"><?php _e('WARNING: We strongly recommend backing up your database before altering the charset of the MaxButtons table in your WordPress database.', 'maxbuttons') ?></h3>

                        <h3><?php _e('The button below should help fix the "foreign character issue" some people experience when using MaxButtons. If you use foreign characters in your buttons and after saving see ????, use this button.', 'maxbuttons') ?></h3>

                        <form action="" method="POST">
												<?php echo $post_nonce_field ?>
                            <input type="submit" name="alter_charset" class="button-primary" value="<?php _e('Change MaxButtons Table To UTF8', 'maxbuttons') ?>" />
														<?php echo (property_exists($view, 'response')) ? $view->response : ''; ?>
                        </form>


                <div class="clear"></div>
            </div>
        </div>
          </div>

      <?php if (isset($_GET["show_replace"])): ?>
      <form method="POST">
			<?php echo $post_nonce_field ?>
      <div class="option-container">
      <?php
      	$button = MB()->getClass('button');
      	$button->set(0);
      	$data = $button->get();

      	$allfields = array();

      	foreach($data as $block => $fields)
      	{
      	     if ( is_array($fields) )
 	     		 $allfields =  array_merge($allfields, array_keys($fields));

      	}
			$allfields = array_combine($allfields, $allfields);

      	wp_nonce_field( 'mb_bulk_edit','bulk_edit' );
      	?>

        <input type="hidden" name="replace" value="true" />
      	<div class="title"> <?php _e("Bulk edit","maxbuttons"); ?></div>

      	<div class="inside"  >
      	<p><strong><?php _e("Using Bulk editor MAY and probably WILL destroy your buttons. In case you wish to prevent this - please BACKUP all your buttons before proceeding!","maxbuttons"); ?></strong></p>

      	<div class="option"><label><?php _e("Field", "maxbuttons"); ?> </label> <?php echo maxUtils::selectify("replace_field", $allfields, 'url'); ?></div>

      	<div class="option"><label><?php _e("Search","maxbuttons"); ?> </label> <input type="text" name="search" value=""></div>
      	<div class="option"><label><?php _e("Replace","maxbuttons"); ?> </label> <input type="text" name="replace" value=""></div>


    	<p style="color: #ff0000"> <?php _e("I understand that this may destroy all my buttons", "maxbuttons"); ?></p>

      	<p><?php _e("", "maxbuttons"); ?></p>
      	 <?php submit_button(__("Replace", "maxbuttons") ); ?>
      	</div>
      	</div>
  		</form>

		<?php else: ?>
  		<a href="<?php echo esc_url(add_query_arg('show_replace',true)); ?>"><?php _e("I need to bulk edit something","maxbuttons"); ?></a>
  		<?php endif; ?>

        </div>
 </div> <!-- advanced tab -->
        <div class="ad-wrap">
		<?php do_action("mb-display-ads"); ?>
    </div>

<?php $admin->get_footer(); ?>