LLMS_Metabox_Button_Field
Contents
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.button.php
class LLMS_Metabox_Button_Field extends LLMS_Metabox_Field implements Meta_Box_Field_Interface { /** * Class constructor * * @param array $_field Array containing information about field */ public function __construct( $_field ) { $this->field = $_field; } /** * outputs the Html for the given field * * @return void */ public function output() { global $post; parent::output(); ?> <button id="<?php echo esc_attr( $this->field['id'] ); ?>" class="<?php echo esc_attr( $this->field['class'] ); ?>" > <?php echo esc_attr( $this->field['value'] ); ?> </button> <?php parent::close_output(); } }
Expand full source code Collapse full source code View on GitHub
Methods Methods
- __construct — Class constructor
- output — outputs the Html for the given field