# maxbuttons/6.23/assets/integrations/siteorigins_builder/fields/maxbutton.class.php

MaxButtons – Create buttons, version 6.23. 125 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/6.23/code/assets/integrations/siteorigins_builder/fields/maxbutton.class.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/6.23/raw/assets/integrations/siteorigins_builder/fields/maxbutton.class.php
- Modified: 2017-09-28T17:08:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/maxbuttons/6.23/code/assets/integrations/siteorigins_builder/fields/maxbutton.class.php#L10-L20`.

```php
<?php
namespace MaxButtons; 

/**
 * Use of this field requires at least WordPress 3.5.
 *
 * Class SiteOrigin_Widget_Field_Media
 */
class MaxButton_Widget_Field_MaxButton extends \SiteOrigin_Widget_Field_Base {
	/**
	 * A label for the title of the media selector dialog.
	 *
	 * @access protected
	 * @var string
	 */
	protected $choose;
	/**
	 * A label for the confirmation button of the media selector dialog.
	 *
	 * @access protected
	 * @var string
	 */
	protected $update;
	/**
	 * Sets the media library which to browse and from which media can be selected. Allowed values are 'image',
	 * 'audio', 'video', and 'file'. The default is 'file'.
	 *
	 * @access protected
	 * @var string
	 */
//	protected $library;
	/**
	 * Whether or not to display a URL input field which allows for specification of a fallback URL to be used in case
	 * the selected media resource isn't available.
	 *
	 * @access protected
	 * @var bool
	 */
	protected $fallback;
	/**
	 * Reference to the containing widget required for creating the fallback subfield.
	 *
	 * @access private
	 * @var SiteOrigin_Widget
	 */
	protected $for_widget;
	/**
	 * An array of field names of parent repeaters.
	 *
	 * @var array
	 */
	private $parent_repeater;

	  public function __construct( $base_name, $element_id, $element_name, $field_options, $for_widget, $parent_container = array()  ) {
		parent::__construct( $base_name, $element_id, $element_name, $field_options );

		$this->for_widget = $for_widget;
		$this->parent_repeater = $parent_container;

	} 

	protected function get_default_options() {
		return array(
			'choose' => __( 'Choose Maxbutton', 'maxbuttons' ),
			'update' => __( 'Set Media', 'maxbuttons' ),
		//	'library' => 'image'
		);
	}

	protected function render_field( $value, $instance ) {
		 //$buttons = MB() 
		?>
		<script language="javascript"> 
			function insertSOPageBuilder(id)
			{
				var button = jQuery('.media-buttons .maxbutton-' + id).parents('.shortcode-container').children().clone();
				jQuery("#SOP_selected").html(button);
				jQuery('#sop_selected_button').val(id); 
				return false; 
				
			}
		</script> 
		 <button class="button-primary maxbutton_media_button"  data-callback='insertSOPageBuilder'><?php _e("Select a Button"); ?></button>
		<p><?php _e('Selected Button', 'maxbuttons') ?></p>
 		<div id='SOP_selected'><?php 
 			$button= MB()->getClass('button'); 
 			
 			if (intval($value) > 0) 
 			{
 				$button->set($value); 
 				$button->display(array('load_css' => 'inline') ); 
 			}
 		
 		?> </div> 

		<input type="hidden" id="sop_selected_button" value="<?php echo esc_attr( is_array( $value ) ? '-1' : $value ) ?>" name="<?php echo esc_attr( $this->element_name ) ?>" class="siteorigin-widget-input" />

		<?php
	}

 
	// $instance was added somehow by siteorigin making the plugin crash - added null for backward compat. 
	protected function sanitize_field_input( $value, $instance = null ) {
		// MB value should be integer - button_id
		return intval( $value );
	}

	public function sanitize_instance( $instance ) {
		$fallback_name = $this->get_fallback_field_name( $this->base_name );
		if( !empty( $this->fallback ) && !empty( $instance[ $fallback_name ] ) ) {
			$instance[ $fallback_name ] = esc_url_raw( $instance[ $fallback_name ] );
		}
		return $instance;
	}

	public function get_fallback_field_name( $base_name ) {
		$v_name = $base_name;
		if( strpos($v_name, '][') !== false ) {
			// Remove this splitter
			$v_name = substr( $v_name, strpos($v_name, '][') + 2 );
		}
		return $v_name . '_fallback';
	}
}

```
