# customify/1.7.0/features/customizer/controls/class-Pix_Customize_Button_Control.php

Customify, version 1.7.0. 21 lines.

- Page: https://pluginprobe.com/plugins/customify/1.7.0/code/features/customizer/controls/class-Pix_Customize_Button_Control.php
- Raw: https://pluginprobe.com/plugins/customify/1.7.0/raw/features/customizer/controls/class-Pix_Customize_Button_Control.php
- Modified: 2015-03-16T14:53:56+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/customify/1.7.0/code/features/customizer/controls/class-Pix_Customize_Button_Control.php#L10-L20`.

```php
<?php

/**
 * Class Pix_Customize_Color_Control
 * A simple Color Control
 */
class Pix_Customize_Button_Control extends Pix_Customize_Control {
	public $type    = 'button';
	public $action  = null;

	/**
	 * Render the control's content.
	 *
	 * @since 3.4.0
	 */
	public function render_content() { ?>
		<button type="button" class="customify_button button" <?php $this->input_attrs(); ?> data-action="<?php echo esc_html( $this->action ); ?>" ><?php echo esc_html( $this->label ); ?></button>
	<?php

	}
}
```
