@@ -15,104 +15,104 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Current data for metadata |
|
| 20 | - * |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $current_data; |
|
| 18 | + /** |
|
| 19 | + * Current data for metadata |
|
| 20 | + * |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $current_data; |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Metadata data |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data; |
|
| 26 | + /** |
|
| 27 | + * Metadata data |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Constructor. |
|
| 36 | - * |
|
| 37 | - * @param array $meta Data to wrap behind this function. |
|
| 38 | - */ |
|
| 39 | - public function __construct( $meta = array() ) { |
|
| 40 | - $this->current_data = $meta; |
|
| 41 | - $this->apply_changes(); |
|
| 42 | - } |
|
| 34 | + /** |
|
| 35 | + * Constructor. |
|
| 36 | + * |
|
| 37 | + * @param array $meta Data to wrap behind this function. |
|
| 38 | + */ |
|
| 39 | + public function __construct( $meta = array() ) { |
|
| 40 | + $this->current_data = $meta; |
|
| 41 | + $this->apply_changes(); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * When converted to JSON. |
|
| 46 | - * |
|
| 47 | - * @return object|array |
|
| 48 | - */ |
|
| 49 | - public function jsonSerialize() { |
|
| 50 | - return $this->get_data(); |
|
| 51 | - } |
|
| 44 | + /** |
|
| 45 | + * When converted to JSON. |
|
| 46 | + * |
|
| 47 | + * @return object|array |
|
| 48 | + */ |
|
| 49 | + public function jsonSerialize() { |
|
| 50 | + return $this->get_data(); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Merge changes with data and clear. |
|
| 55 | - */ |
|
| 56 | - public function apply_changes() { |
|
| 57 | - $this->data = $this->current_data; |
|
| 58 | - } |
|
| 53 | + /** |
|
| 54 | + * Merge changes with data and clear. |
|
| 55 | + */ |
|
| 56 | + public function apply_changes() { |
|
| 57 | + $this->data = $this->current_data; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Creates or updates a property in the metadata object. |
|
| 62 | - * |
|
| 63 | - * @param string $key Key to set. |
|
| 64 | - * @param mixed $value Value to set. |
|
| 65 | - */ |
|
| 66 | - public function __set( $key, $value ) { |
|
| 67 | - $this->current_data[ $key ] = $value; |
|
| 68 | - } |
|
| 60 | + /** |
|
| 61 | + * Creates or updates a property in the metadata object. |
|
| 62 | + * |
|
| 63 | + * @param string $key Key to set. |
|
| 64 | + * @param mixed $value Value to set. |
|
| 65 | + */ |
|
| 66 | + public function __set( $key, $value ) { |
|
| 67 | + $this->current_data[ $key ] = $value; |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * Checks if a given key exists in our data. This is called internally |
|
| 72 | - * by `empty` and `isset`. |
|
| 73 | - * |
|
| 74 | - * @param string $key Key to check if set. |
|
| 75 | - * |
|
| 76 | - * @return bool |
|
| 77 | - */ |
|
| 78 | - public function __isset( $key ) { |
|
| 79 | - return array_key_exists( $key, $this->current_data ); |
|
| 80 | - } |
|
| 70 | + /** |
|
| 71 | + * Checks if a given key exists in our data. This is called internally |
|
| 72 | + * by `empty` and `isset`. |
|
| 73 | + * |
|
| 74 | + * @param string $key Key to check if set. |
|
| 75 | + * |
|
| 76 | + * @return bool |
|
| 77 | + */ |
|
| 78 | + public function __isset( $key ) { |
|
| 79 | + return array_key_exists( $key, $this->current_data ); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Returns the value of any property. |
|
| 84 | - * |
|
| 85 | - * @param string $key Key to get. |
|
| 86 | - * @return mixed Property value or NULL if it does not exists |
|
| 87 | - */ |
|
| 88 | - public function __get( $key ) { |
|
| 89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | - return $this->current_data[ $key ]; |
|
| 91 | - } |
|
| 92 | - return null; |
|
| 93 | - } |
|
| 82 | + /** |
|
| 83 | + * Returns the value of any property. |
|
| 84 | + * |
|
| 85 | + * @param string $key Key to get. |
|
| 86 | + * @return mixed Property value or NULL if it does not exists |
|
| 87 | + */ |
|
| 88 | + public function __get( $key ) { |
|
| 89 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | + return $this->current_data[ $key ]; |
|
| 91 | + } |
|
| 92 | + return null; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * Return data changes only. |
|
| 97 | - * |
|
| 98 | - * @return array |
|
| 99 | - */ |
|
| 100 | - public function get_changes() { |
|
| 101 | - $changes = array(); |
|
| 102 | - foreach ( $this->current_data as $id => $value ) { |
|
| 103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | - $changes[ $id ] = $value; |
|
| 105 | - } |
|
| 106 | - } |
|
| 107 | - return $changes; |
|
| 108 | - } |
|
| 95 | + /** |
|
| 96 | + * Return data changes only. |
|
| 97 | + * |
|
| 98 | + * @return array |
|
| 99 | + */ |
|
| 100 | + public function get_changes() { |
|
| 101 | + $changes = array(); |
|
| 102 | + foreach ( $this->current_data as $id => $value ) { |
|
| 103 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | + $changes[ $id ] = $value; |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | + return $changes; |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * Return all data as an array. |
|
| 112 | - * |
|
| 113 | - * @return array |
|
| 114 | - */ |
|
| 115 | - public function get_data() { |
|
| 116 | - return $this->data; |
|
| 117 | - } |
|
| 110 | + /** |
|
| 111 | + * Return all data as an array. |
|
| 112 | + * |
|
| 113 | + * @return array |
|
| 114 | + */ |
|
| 115 | + public function get_data() { |
|
| 116 | + return $this->data; |
|
| 117 | + } |
|
| 118 | 118 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Item_Info { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the item. |
@@ -97,9 +97,9 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | - * Returns item type tolltip. |
|
| 101 | - * |
|
| 102 | - */ |
|
| 100 | + * Returns item type tolltip. |
|
| 101 | + * |
|
| 102 | + */ |
|
| 103 | 103 | public static function get_tooltip( $post ) { |
| 104 | 104 | |
| 105 | 105 | ob_start(); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Payment_Form_Info { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the form. |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Invoice_Items { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Invoice_Payment_Meta { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Invoice_Details { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | - exit; // Exit if accessed directly |
|
| 9 | + exit; // Exit if accessed directly |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -15,10 +15,10 @@ discard block |
||
| 15 | 15 | class GetPaid_Meta_Box_Resend_Invoice { |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | - * Output the metabox. |
|
| 19 | - * |
|
| 20 | - * @param WP_Post $post |
|
| 21 | - */ |
|
| 18 | + * Output the metabox. |
|
| 19 | + * |
|
| 20 | + * @param WP_Post $post |
|
| 21 | + */ |
|
| 22 | 22 | public static function output( $post ) { |
| 23 | 23 | |
| 24 | 24 | // Fetch the invoice. |
@@ -45,17 +45,17 @@ |
||
| 45 | 45 | parent::__construct( $options ); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * The Super block output function. |
|
| 50 | - * |
|
| 51 | - * @param array $args |
|
| 52 | - * @param array $widget_args |
|
| 53 | - * @param string $content |
|
| 54 | - * |
|
| 55 | - * @return mixed|string|bool |
|
| 56 | - */ |
|
| 48 | + /** |
|
| 49 | + * The Super block output function. |
|
| 50 | + * |
|
| 51 | + * @param array $args |
|
| 52 | + * @param array $widget_args |
|
| 53 | + * @param string $content |
|
| 54 | + * |
|
| 55 | + * @return mixed|string|bool |
|
| 56 | + */ |
|
| 57 | 57 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
| 58 | - return wpinv_checkout_form(); |
|
| 58 | + return wpinv_checkout_form(); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; // Exit if accessed directly |
|
| 4 | + exit; // Exit if accessed directly |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -11,143 +11,143 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | class AUI_Component_Button { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Build the component. |
|
| 16 | - * |
|
| 17 | - * @param array $args |
|
| 18 | - * |
|
| 19 | - * @return string The rendered component. |
|
| 20 | - */ |
|
| 21 | - public static function get($args = array()){ |
|
| 22 | - $defaults = array( |
|
| 23 | - 'type' => 'a', // a, button, badge |
|
| 24 | - 'href' => '#', |
|
| 25 | - 'new_window' => false, |
|
| 26 | - 'class' => 'btn btn-primary', |
|
| 27 | - 'id' => '', |
|
| 28 | - 'title' => '', |
|
| 29 | - 'value' => '', |
|
| 30 | - 'content' => '', |
|
| 31 | - 'icon' => '', |
|
| 32 | - 'hover_content' => '', |
|
| 33 | - 'hover_icon' => '', |
|
| 34 | - 'new_line_after' => true, |
|
| 35 | - 'no_wrap' => true, |
|
| 36 | - 'onclick' => '', |
|
| 37 | - 'style' => '', |
|
| 38 | - 'extra_attributes' => array(), // an array of extra attributes |
|
| 39 | - 'icon_extra_attributes' => array() // an array of icon extra attributes |
|
| 40 | - ); |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Parse incoming $args into an array and merge it with $defaults |
|
| 44 | - */ |
|
| 45 | - $args = wp_parse_args( $args, $defaults ); |
|
| 46 | - $output = ''; |
|
| 47 | - if ( ! empty( $args['type'] ) ) { |
|
| 48 | - $type = $args['type'] != 'a' ? esc_attr($args['type']) : 'a'; |
|
| 49 | - |
|
| 50 | - // open/type |
|
| 51 | - if($type=='a'){ |
|
| 52 | - $new_window = !empty($args['new_window']) ? ' target="_blank" ' : ''; |
|
| 53 | - $output .= '<a href="' . $args['href'] . '"'.$new_window; |
|
| 54 | - }elseif($type=='badge'){ |
|
| 55 | - $output .= '<span '; |
|
| 56 | - }else{ |
|
| 57 | - $output .= '<button type="' . $type . '" '; |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - // name |
|
| 61 | - if(!empty($args['name'])){ |
|
| 62 | - $output .= AUI_Component_Helper::name($args['name']); |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - // id |
|
| 66 | - if(!empty($args['id'])){ |
|
| 67 | - $output .= AUI_Component_Helper::id($args['id']); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - // title |
|
| 71 | - if(!empty($args['title'])){ |
|
| 72 | - $output .= AUI_Component_Helper::title($args['title']); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - // value |
|
| 76 | - if(!empty($args['value'])){ |
|
| 77 | - $output .= AUI_Component_Helper::value($args['value']); |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - // class |
|
| 81 | - $class = !empty($args['class']) ? $args['class'] : ''; |
|
| 82 | - $output .= AUI_Component_Helper::class_attr($class); |
|
| 14 | + /** |
|
| 15 | + * Build the component. |
|
| 16 | + * |
|
| 17 | + * @param array $args |
|
| 18 | + * |
|
| 19 | + * @return string The rendered component. |
|
| 20 | + */ |
|
| 21 | + public static function get($args = array()){ |
|
| 22 | + $defaults = array( |
|
| 23 | + 'type' => 'a', // a, button, badge |
|
| 24 | + 'href' => '#', |
|
| 25 | + 'new_window' => false, |
|
| 26 | + 'class' => 'btn btn-primary', |
|
| 27 | + 'id' => '', |
|
| 28 | + 'title' => '', |
|
| 29 | + 'value' => '', |
|
| 30 | + 'content' => '', |
|
| 31 | + 'icon' => '', |
|
| 32 | + 'hover_content' => '', |
|
| 33 | + 'hover_icon' => '', |
|
| 34 | + 'new_line_after' => true, |
|
| 35 | + 'no_wrap' => true, |
|
| 36 | + 'onclick' => '', |
|
| 37 | + 'style' => '', |
|
| 38 | + 'extra_attributes' => array(), // an array of extra attributes |
|
| 39 | + 'icon_extra_attributes' => array() // an array of icon extra attributes |
|
| 40 | + ); |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Parse incoming $args into an array and merge it with $defaults |
|
| 44 | + */ |
|
| 45 | + $args = wp_parse_args( $args, $defaults ); |
|
| 46 | + $output = ''; |
|
| 47 | + if ( ! empty( $args['type'] ) ) { |
|
| 48 | + $type = $args['type'] != 'a' ? esc_attr($args['type']) : 'a'; |
|
| 49 | + |
|
| 50 | + // open/type |
|
| 51 | + if($type=='a'){ |
|
| 52 | + $new_window = !empty($args['new_window']) ? ' target="_blank" ' : ''; |
|
| 53 | + $output .= '<a href="' . $args['href'] . '"'.$new_window; |
|
| 54 | + }elseif($type=='badge'){ |
|
| 55 | + $output .= '<span '; |
|
| 56 | + }else{ |
|
| 57 | + $output .= '<button type="' . $type . '" '; |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + // name |
|
| 61 | + if(!empty($args['name'])){ |
|
| 62 | + $output .= AUI_Component_Helper::name($args['name']); |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + // id |
|
| 66 | + if(!empty($args['id'])){ |
|
| 67 | + $output .= AUI_Component_Helper::id($args['id']); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + // title |
|
| 71 | + if(!empty($args['title'])){ |
|
| 72 | + $output .= AUI_Component_Helper::title($args['title']); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + // value |
|
| 76 | + if(!empty($args['value'])){ |
|
| 77 | + $output .= AUI_Component_Helper::value($args['value']); |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + // class |
|
| 81 | + $class = !empty($args['class']) ? $args['class'] : ''; |
|
| 82 | + $output .= AUI_Component_Helper::class_attr($class); |
|
| 83 | 83 | |
| 84 | - // data-attributes |
|
| 85 | - $output .= AUI_Component_Helper::data_attributes($args); |
|
| 84 | + // data-attributes |
|
| 85 | + $output .= AUI_Component_Helper::data_attributes($args); |
|
| 86 | 86 | |
| 87 | - // aria-attributes |
|
| 88 | - $output .= AUI_Component_Helper::aria_attributes($args); |
|
| 87 | + // aria-attributes |
|
| 88 | + $output .= AUI_Component_Helper::aria_attributes($args); |
|
| 89 | 89 | |
| 90 | - // extra attributes |
|
| 91 | - if(!empty($args['extra_attributes'])){ |
|
| 92 | - $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
|
| 93 | - } |
|
| 90 | + // extra attributes |
|
| 91 | + if(!empty($args['extra_attributes'])){ |
|
| 92 | + $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - // onclick, we don't escape this |
|
| 96 | - if(!empty($args['onclick'])){ |
|
| 97 | - $output .= ' onclick="'.$args['onclick'].'" '; |
|
| 98 | - } |
|
| 95 | + // onclick, we don't escape this |
|
| 96 | + if(!empty($args['onclick'])){ |
|
| 97 | + $output .= ' onclick="'.$args['onclick'].'" '; |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - // style, we don't escape this |
|
| 101 | - if(!empty($args['style'])){ |
|
| 102 | - $output .= ' style="'.$args['style'].'" '; |
|
| 103 | - } |
|
| 100 | + // style, we don't escape this |
|
| 101 | + if(!empty($args['style'])){ |
|
| 102 | + $output .= ' style="'.$args['style'].'" '; |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - // close opening tag |
|
| 106 | - $output .= ' >'; |
|
| 105 | + // close opening tag |
|
| 106 | + $output .= ' >'; |
|
| 107 | 107 | |
| 108 | 108 | |
| 109 | - // hover content |
|
| 110 | - $hover_content = false; |
|
| 111 | - if(!empty($args['hover_content']) || !empty($args['hover_icon'])){ |
|
| 112 | - $output .= "<span class='hover-content'>".AUI_Component_Helper::icon($args['hover_icon'],$args['hover_content']).$args['hover_content']."</span>"; |
|
| 113 | - $hover_content = true; |
|
| 114 | - } |
|
| 109 | + // hover content |
|
| 110 | + $hover_content = false; |
|
| 111 | + if(!empty($args['hover_content']) || !empty($args['hover_icon'])){ |
|
| 112 | + $output .= "<span class='hover-content'>".AUI_Component_Helper::icon($args['hover_icon'],$args['hover_content']).$args['hover_content']."</span>"; |
|
| 113 | + $hover_content = true; |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - // content |
|
| 117 | - if($hover_content){$output .= "<span class='hover-content-original'>";} |
|
| 118 | - if(!empty($args['content']) || !empty($args['icon'])){ |
|
| 119 | - $output .= AUI_Component_Helper::icon($args['icon'],$args['content'],$args['icon_extra_attributes']).$args['content']; |
|
| 120 | - } |
|
| 121 | - if($hover_content){$output .= "</span>";} |
|
| 116 | + // content |
|
| 117 | + if($hover_content){$output .= "<span class='hover-content-original'>";} |
|
| 118 | + if(!empty($args['content']) || !empty($args['icon'])){ |
|
| 119 | + $output .= AUI_Component_Helper::icon($args['icon'],$args['content'],$args['icon_extra_attributes']).$args['content']; |
|
| 120 | + } |
|
| 121 | + if($hover_content){$output .= "</span>";} |
|
| 122 | 122 | |
| 123 | 123 | |
| 124 | 124 | |
| 125 | - // close |
|
| 126 | - if($type=='a'){ |
|
| 127 | - $output .= '</a>'; |
|
| 128 | - }elseif($type=='badge'){ |
|
| 129 | - $output .= '</span>'; |
|
| 130 | - }else{ |
|
| 131 | - $output .= '</button>'; |
|
| 132 | - } |
|
| 125 | + // close |
|
| 126 | + if($type=='a'){ |
|
| 127 | + $output .= '</a>'; |
|
| 128 | + }elseif($type=='badge'){ |
|
| 129 | + $output .= '</span>'; |
|
| 130 | + }else{ |
|
| 131 | + $output .= '</button>'; |
|
| 132 | + } |
|
| 133 | 133 | |
| 134 | - // maybe new line after? This adds better spacing between buttons. |
|
| 135 | - if(!empty($args['new_line_after'])){ |
|
| 136 | - $output .= PHP_EOL; |
|
| 137 | - } |
|
| 134 | + // maybe new line after? This adds better spacing between buttons. |
|
| 135 | + if(!empty($args['new_line_after'])){ |
|
| 136 | + $output .= PHP_EOL; |
|
| 137 | + } |
|
| 138 | 138 | |
| 139 | 139 | |
| 140 | - // wrap |
|
| 141 | - if(!$args['no_wrap']){ |
|
| 142 | - $output = AUI_Component_Input::wrap(array( |
|
| 143 | - 'content' => $output, |
|
| 144 | - )); |
|
| 145 | - } |
|
| 140 | + // wrap |
|
| 141 | + if(!$args['no_wrap']){ |
|
| 142 | + $output = AUI_Component_Input::wrap(array( |
|
| 143 | + 'content' => $output, |
|
| 144 | + )); |
|
| 145 | + } |
|
| 146 | 146 | |
| 147 | 147 | |
| 148 | - } |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | - return $output; |
|
| 151 | - } |
|
| 150 | + return $output; |
|
| 151 | + } |
|
| 152 | 152 | |
| 153 | 153 | } |
| 154 | 154 | \ No newline at end of file |