skipv1_0_0get_button
Button getter Function.
Description
Parameters (3)
- 0. $value
- The value.
- 1. $args — Optional. (array) =>
array()
- The args.
- 2. $return — Optional. (string) =>
'html'
- The return.
Usage
if ( !function_exists( 'skip\v1_0_0\get_button' ) ) { require_once '/includes/skip/elements/forms/button.php'; } // The value. $value = null; // The args. $args = array(); // The return. $return = 'html'; // NOTICE! Understand what this does before running. $result = skip\v1_0_0\get_button($value, $args, $return);
Defined (1)
The function is defined in the following location(s).
- /includes/skip/elements/forms/button.php
- function get_button( $value, $args = array(), $return = 'html' ) {
- $button = new Button( $value, $args );
- return element_return( $button, $return );
- }