name = 'bbutton'; $this->label = __('Button','acf-bootstrap-button'); $this->category = __('Bootstrap','acf-bootstrap-button'); // Basic, Content, Choice, etc $this->defaults = array( 'bootstrap_version' => 3, 'allow_advanced_3'=> array( 'text', 'tag', 'rel', 'style', 'size', 'block', 'active_state', 'disabled_state', 'css_class' ), 'allow_advanced_4'=> array( 'text', 'tag', 'rel', 'style', 'outline', 'size', 'block', 'active_state', 'disabled_state', 'css_class' ), 'default_text' => '', 'default_tag' => 'a', 'default_rel' => '', 'default_style_3' => 'default', 'default_style_4' => 'primary', 'default_outline_4' => 0, 'default_size_3' => '', 'default_size_4' => '', 'default_block' => 0, 'default_active_state' => 0, 'default_disabled_state' => 0, 'default_css_class' => '', ); // do not delete! parent::__construct(); // settings $this->settings = $settings; } /** * create_options() * * Create extra options for your field. This is rendered when editing a field. * The value of $field['name'] can be used (like below) to save extra data to the $field * * @type action * @since 3.6 * @date 23/01/13 * * @param $field - an array holding all the field's data */ function create_options( $field ) { // defaults? $field = array_merge($this->defaults, $field); // key is needed in the field names to correctly save the data $key = $field['name']; // Create Field Options HTML ?>

'radio', 'name' => 'fields['.$key.'][bootstrap_version]', 'value' => $field['bootstrap_version'], 'layout' => 'horizontal', 'choices' => array( 3 => __( 'Bootstrap 3', 'acf-bootstrap-button' ), 4 => __( 'Bootstrap 4', 'acf-bootstrap-button' ), ) )); ?>

'checkbox', 'name' => 'fields['.$key.'][allow_advanced_3]', 'value' => $field['allow_advanced_3'], 'layout' => 'horizontal', 'choices' => array( 'text' => __('Text', 'acf-bootstrap-button'), 'tag' => __("Tag",'acf-bootstrap-button'), 'rel' => __("Rel",'acf-bootstrap-button'), 'style' => __("Style",'acf-bootstrap-button'), 'size' => __("Size",'acf-bootstrap-button'), 'block' => __("Block",'acf-bootstrap-button'), 'active_state' => __("Active State",'acf-bootstrap-button'), 'disabled_state' => __("Disabled State",'acf-bootstrap-button'), 'css_class' => __("CSS Class",'acf-bootstrap-button'), ) )); ?>

'checkbox', 'name' => 'fields['.$key.'][allow_advanced_4]', 'value' => $field['allow_advanced_4'], 'layout' => 'horizontal', 'choices' => array( 'text' => __('Text', 'acf-bootstrap-button'), 'tag' => __("Tag",'acf-bootstrap-button'), 'rel' => __("Rel",'acf-bootstrap-button'), 'style' => __("Style",'acf-bootstrap-button'), 'outline' => __("Outline",'acf-bootstrap-button'), 'size' => __("Size",'acf-bootstrap-button'), 'block' => __("Block",'acf-bootstrap-button'), 'active_state' => __("Active State",'acf-bootstrap-button'), 'disabled_state' => __("Disabled State",'acf-bootstrap-button'), 'css_class' => __("CSS Class",'acf-bootstrap-button'), ) )); ?>

'text', 'name' => 'fields['.$key.'][default_text]', 'value' => $field['default_text'], 'layout' => 'horizontal', )); ?>

'select', 'name' => 'fields['.$key.'][default_tag]', 'value' => $field['default_tag'], 'choices' => array( 'a' => __("Link",'acf-bootstrap-button'), 'button' => __("Button",'acf-bootstrap-button'), 'input' => __("Input",'acf-bootstrap-button'), 'submit' => __("Submit",'acf-bootstrap-button'), 'reset' => __("Reset",'acf-bootstrap-button'), ) )); ?>

'select', 'name' => 'fields['.$key.'][default_rel]', 'value' => $field['default_rel'], 'choices' => array( '' => __("No Rel",'acf-bootstrap-button'), 'alternate' => __("Alternate",'acf-bootstrap-button'), 'author' => __("Author",'acf-bootstrap-button'), 'bookmark' => __("Bookmark",'acf-bootstrap-button'), 'external' => __("External",'acf-bootstrap-button'), 'help' => __("Help",'acf-bootstrap-button'), 'license' => __("License",'acf-bootstrap-button'), 'next' => __("Next",'acf-bootstrap-button'), 'nofollow' => __("Nofollow",'acf-bootstrap-button'), 'noreferrer' => __("Noreferrer",'acf-bootstrap-button'), 'noopener' => __("Noopener",'acf-bootstrap-button'), 'prev' => __("Prev",'acf-bootstrap-button'), 'search' => __("Search",'acf-bootstrap-button'), 'tag' => __("Tag",'acf-bootstrap-button'), ) )); ?>

'select', 'name' => 'fields['.$key.'][default_style_3]', 'value' => $field['default_style_3'], 'choices' => array( 'btn-default' => __("Default",'acf-bootstrap-button'), 'btn-primary' => __("Primary",'acf-bootstrap-button'), 'btn-success' => __("Success",'acf-bootstrap-button'), 'btn-info' => __("Info",'acf-bootstrap-button'), 'btn-warning' => __("Warning",'acf-bootstrap-button'), 'btn-danger' => __("Danger",'acf-bootstrap-button'), 'btn-link' => __("Link",'acf-bootstrap-button'), ) )); ?>

'select', 'name' => 'fields['.$key.'][default_style_4]', 'value' => $field['default_style_4'], 'choices' => array( 'btn-primary' => __("Primary",'acf-bootstrap-button'), 'btn-secondary' => __("Secondary",'acf-bootstrap-button'), 'btn-success' => __("Success",'acf-bootstrap-button'), 'btn-danger' => __("Danger",'acf-bootstrap-button'), 'btn-warning' => __("Warning",'acf-bootstrap-button'), 'btn-info' => __("Info",'acf-bootstrap-button'), 'btn-light' => __("Light",'acf-bootstrap-button'), 'btn-dark' => __("Dark",'acf-bootstrap-button'), 'btn-link' => __("Link",'acf-bootstrap-button'), ) )); ?>

'radio', 'name' => 'fields['.$key.'][default_outline_4]', 'value' => $field['default_outline_4'], 'layout' => 'horizontal', 'choices' => array( 1 => __( 'Yes', 'acf-bootstrap-button' ), 0 => __( 'No', 'acf-bootstrap-button' ), ) )); ?>

'select', 'name' => 'fields['.$key.'][default_size_3]', 'value' => $field['default_size_3'], 'choices' => array( '' => __("Default",'acf-bootstrap-button'), 'btn-lg' => __("Large",'acf-bootstrap-button'), 'btn-sm' => __("Small",'acf-bootstrap-button'), 'btn-xs' => __("Extra Small",'acf-bootstrap-button'), ) )); ?>

'select', 'name' => 'fields['.$key.'][default_size_4]', 'value' => $field['default_size_4'], 'choices' => array( '' => __("Default",'acf-bootstrap-button'), 'btn-lg' => __("Large",'acf-bootstrap-button'), 'btn-sm' => __("Small",'acf-bootstrap-button'), ) )); ?>

'radio', 'name' => 'fields['.$key.'][default_block]', 'value' => $field['default_block'], 'layout' => 'horizontal', 'choices' => array( 1 => __( 'Yes', 'acf-bootstrap-button' ), 0 => __( 'No', 'acf-bootstrap-button' ), ) )); ?>

'radio', 'name' => 'fields['.$key.'][default_active_state]', 'value' => $field['default_active_state'], 'layout' => 'horizontal', 'choices' => array( 1 => __( 'Yes', 'acf-bootstrap-button' ), 0 => __( 'No', 'acf-bootstrap-button' ), ) )); ?>

'radio', 'name' => 'fields['.$key.'][default_disabled_state]', 'value' => $field['default_disabled_state'], 'layout' => 'horizontal', 'choices' => array( 1 => __( 'Yes', 'acf-bootstrap-button' ), 0 => __( 'No', 'acf-bootstrap-button' ), ) )); ?>

'text', 'name' => 'fields['.$key.'][default_css_class]', 'value' => $field['default_css_class'], )); ?> defaults, $field); // perhaps use $field['preview_size'] to alter the markup? if (!isset($field['value']['bootstrap_version'])) $field['value']['bootstrap_version'] = $field['bootstrap_version']; elseif ($field['value']['bootstrap_version'] != $field['bootstrap_version']) $field['value']['bootstrap_version'] = $field['bootstrap_version']; $bv = $field['value']['bootstrap_version']; $field['value']['text'] = ( isset( $field['value']['text'] ) ) ? $field['value']['text'] : $field['default_text']; $field['value']['tag'] = ( isset( $field['value']['tag'] ) ) ? $field['value']['tag'] : $field['default_tag']; $field['value']['rel'] = ( isset( $field['value']['rel'] ) ) ? $field['value']['rel'] : $field['default_rel']; $field['value']['style_' . $bv] = ( isset( $field['value']['style_' . $bv] ) ) ? $field['value']['style_' . $bv] : $field['default_style_' . $bv]; if($bv == 4) $field['value']['outline_' . $bv] = ( isset( $field['value']['outline_' . $bv] ) ) ? $field['value']['outline_' . $bv] : $field['default_outline_' . $bv]; $field['value']['size_' . $bv] = ( isset( $field['value']['size_' . $bv] ) ) ? $field['value']['size_' . $bv] : $field['default_size_' . $bv]; $field['value']['block'] = ( isset( $field['value']['block'] ) ) ? $field['value']['block'] : $field['default_block']; $field['value']['active_state'] = ( isset( $field['value']['active_state'] ) ) ? $field['value']['active_state'] : $field['default_active_state']; $field['value']['disabled_state'] = ( isset( $field['value']['disabled_state'] ) ) ? $field['value']['disabled_state'] : $field['default_disabled_state']; $field['value']['css_class'] = ( isset( $field['value']['css_class'] ) ) ? $field['value']['css_class'] : $field['default_css_class']; $url_exists = true; if ( ! isset($field['value']['url'] ) || $field['value']['url'] == ''){ $url_exists = false; } // create Field HTML ?>
settings['url']; $version = $this->settings['version']; // register & include JS wp_register_script( 'acf-input-bbutton', "{$url}assets/js/input.js", array('acf-input'), $version ); wp_enqueue_script('acf-input-bbutton'); $translations = array( 'insert_link' => __('Insert Link', 'acf-bootstrap-button'), 'edit_link' => __('Edit Link', 'acf-bootstrap-button'), 'yes' => __('Yes', 'acf-bootstrap-button'), 'no' => __('No', 'acf-bootstrap-button') ); wp_localize_script('acf-input-bbutton', 'ACFBB', $translations); wp_enqueue_script('acf-input-bbutton'); // register & include CSS wp_register_style( 'acf-input-bbutton', "{$url}assets/css/input.css", array('acf-input'), $version ); wp_enqueue_style('acf-input-bbutton'); } /** * input_admin_head() * * This action is called in the admin_head action on the edit screen where your field is created. * Use this action to add CSS and JavaScript to assist your create_field() action. * * @info http://codex.wordpress.org/Plugin_API/Action_Reference/admin_head * @type action * @since 3.6 * @date 23/01/13 */ /* function input_admin_head() { // Note: This function can be removed if not used } */ /** * field_group_admin_enqueue_scripts() * * This action is called in the admin_enqueue_scripts action on the edit screen where your field is edited. * Use this action to add CSS + JavaScript to assist your create_field_options() action. * * $info http://codex.wordpress.org/Plugin_API/Action_Reference/admin_enqueue_scripts * @type action * @since 3.6 * @date 23/01/13 */ function field_group_admin_enqueue_scripts() { // Note: This function can be removed if not used $this->input_admin_enqueue_scripts(); } /** * field_group_admin_head() * * This action is called in the admin_head action on the edit screen where your field is edited. * Use this action to add CSS and JavaScript to assist your create_field_options() action. * * @info http://codex.wordpress.org/Plugin_API/Action_Reference/admin_head * @type action * @since 3.6 * @date 23/01/13 */ /* function field_group_admin_head() { // Note: This function can be removed if not used } */ /** * load_value() * * This filter is applied to the $value after it is loaded from the db * * @type filter * @since 3.6 * @date 23/01/13 * * @param $value - the value found in the database * @param $post_id - the $post_id from which the value was loaded * @param $field - the field array holding all the field options * * @return $value - the value to be saved in the database */ /* function load_value( $value, $post_id, $field ) { // Note: This function can be removed if not used return $value; } */ /** * update_value() * * This filter is applied to the $value before it is updated in the db * * @type filter * @since 3.6 * @date 23/01/13 * * @param $value - the value which will be saved in the database * @param $post_id - the $post_id of which the value will be saved * @param $field - the field array holding all the field options * * @return $value - the modified value */ /* function update_value( $value, $post_id, $field ) { // Note: This function can be removed if not used return $value; } */ /** * format_value() * * This filter is applied to the $value after it is loaded from the db and before it is passed to the create_field action * * @type filter * @since 3.6 * @date 23/01/13 * * @param $value - the value which was loaded from the database * @param $post_id - the $post_id from which the value was loaded * @param $field - the field array holding all the field options * * @return $value - the modified value */ /* function format_value( $value, $post_id, $field ) { // defaults? /* $field = array_merge($this->defaults, $field); */ // perhaps use $field['preview_size'] to alter the $value? // Note: This function can be removed if not used /*return $value; } */ /** * format_value_for_api() * * This filter is applied to the $value after it is loaded from the db and before it is passed back to the API functions such as the_field * * @type filter * @since 3.6 * @date 23/01/13 * * @param $value - the value which was loaded from the database * @param $post_id - the $post_id from which the value was loaded * @param $field - the field array holding all the field options * * @return $value - the modified value */ /* function format_value_for_api( $value, $post_id, $field ) { // defaults? /* $field = array_merge($this->defaults, $field); */ // perhaps use $field['preview_size'] to alter the $value? // Note: This function can be removed if not used /*return $value; } */ /** * load_field() * * This filter is applied to the $field after it is loaded from the database * * @type filter * @since 3.6 * @date 23/01/13 * * @param $field - the field array holding all the field options * * @return $field - the field array holding all the field options */ /* function load_field( $field ) { // Note: This function can be removed if not used return $field; } */ /** * update_field() * * This filter is applied to the $field before it is saved to the database * * @type filter * @since 3.6 * @date 23/01/13 * * @param $field - the field array holding all the field options * @param $post_id - the field group ID (post_type = acf) * * @return $field - the modified field */ /* function update_field( $field, $post_id ) { // Note: This function can be removed if not used return $field; } */ } // initialize new acf_field_bbutton( $this->settings ); // class_exists check endif; ?>