@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Data store class. |
@@ -54,31 +54,31 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | * @param string $object_type Name of object. |
| 56 | 56 | */ |
| 57 | - public function __construct( $object_type ) { |
|
| 57 | + public function __construct($object_type) { |
|
| 58 | 58 | $this->object_type = $object_type; |
| 59 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
| 59 | + $this->stores = apply_filters('getpaid_data_stores', $this->stores); |
|
| 60 | 60 | |
| 61 | 61 | // If this object type can't be found, check to see if we can load one |
| 62 | 62 | // level up (so if item-type isn't found, we try item). |
| 63 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
| 64 | - $pieces = explode( '-', $object_type ); |
|
| 63 | + if (!array_key_exists($object_type, $this->stores)) { |
|
| 64 | + $pieces = explode('-', $object_type); |
|
| 65 | 65 | $object_type = $pieces[0]; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
| 69 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
| 70 | - if ( is_object( $store ) ) { |
|
| 71 | - $this->current_class_name = get_class( $store ); |
|
| 68 | + if (array_key_exists($object_type, $this->stores)) { |
|
| 69 | + $store = apply_filters('getpaid_' . $object_type . '_data_store', $this->stores[$object_type]); |
|
| 70 | + if (is_object($store)) { |
|
| 71 | + $this->current_class_name = get_class($store); |
|
| 72 | 72 | $this->instance = $store; |
| 73 | 73 | } else { |
| 74 | - if ( ! class_exists( $store ) ) { |
|
| 75 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
| 74 | + if (!class_exists($store)) { |
|
| 75 | + throw new Exception(__('Data store class does not exist.', 'invoicing')); |
|
| 76 | 76 | } |
| 77 | 77 | $this->current_class_name = $store; |
| 78 | 78 | $this->instance = new $store(); |
| 79 | 79 | } |
| 80 | 80 | } else { |
| 81 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
| 81 | + throw new Exception(__('Invalid data store.', 'invoicing')); |
|
| 82 | 82 | } |
| 83 | 83 | } |
| 84 | 84 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | * @return array |
| 89 | 89 | */ |
| 90 | 90 | public function __sleep() { |
| 91 | - return array( 'object_type' ); |
|
| 91 | + return array('object_type'); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * @throws Exception When validation fails. |
| 98 | 98 | */ |
| 99 | 99 | public function __wakeup() { |
| 100 | - $this->__construct( $this->object_type ); |
|
| 100 | + $this->__construct($this->object_type); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
@@ -109,8 +109,8 @@ discard block |
||
| 109 | 109 | * @throws Exception When validation fails. |
| 110 | 110 | * @return GetPaid_Data_Store |
| 111 | 111 | */ |
| 112 | - public static function load( $object_type ) { |
|
| 113 | - return new GetPaid_Data_Store( $object_type ); |
|
| 112 | + public static function load($object_type) { |
|
| 113 | + return new GetPaid_Data_Store($object_type); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | * @since 1.0.19 |
| 140 | 140 | * @param GetPaid_Data $data GetPaid data instance. |
| 141 | 141 | */ |
| 142 | - public function read( &$data ) { |
|
| 143 | - $this->instance->read( $data ); |
|
| 142 | + public function read(&$data) { |
|
| 143 | + $this->instance->read($data); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -149,8 +149,8 @@ discard block |
||
| 149 | 149 | * @since 1.0.19 |
| 150 | 150 | * @param GetPaid_Data $data GetPaid data instance. |
| 151 | 151 | */ |
| 152 | - public function create( &$data ) { |
|
| 153 | - $this->instance->create( $data ); |
|
| 152 | + public function create(&$data) { |
|
| 153 | + $this->instance->create($data); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | /** |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | * @since 1.0.19 |
| 160 | 160 | * @param GetPaid_Data $data GetPaid data instance. |
| 161 | 161 | */ |
| 162 | - public function update( &$data ) { |
|
| 163 | - $this->instance->update( $data ); |
|
| 162 | + public function update(&$data) { |
|
| 163 | + $this->instance->update($data); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | /** |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | * @param GetPaid_Data $data GetPaid data instance. |
| 171 | 171 | * @param array $args Array of args to pass to the delete method. |
| 172 | 172 | */ |
| 173 | - public function delete( &$data, $args = array() ) { |
|
| 174 | - $this->instance->delete( $data, $args ); |
|
| 173 | + public function delete(&$data, $args = array()) { |
|
| 174 | + $this->instance->delete($data, $args); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -182,11 +182,11 @@ discard block |
||
| 182 | 182 | * @param string $method Method. |
| 183 | 183 | * @return mixed |
| 184 | 184 | */ |
| 185 | - public function __call( $method, $parameters ) { |
|
| 186 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
| 187 | - $object = array_shift( $parameters ); |
|
| 188 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
| 189 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
| 185 | + public function __call($method, $parameters) { |
|
| 186 | + if (is_callable(array($this->instance, $method))) { |
|
| 187 | + $object = array_shift($parameters); |
|
| 188 | + $parameters = array_merge(array(&$object), $parameters); |
|
| 189 | + return call_user_func_array(array($this->instance, $method), $parameters); |
|
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | |
@@ -11,186 +11,186 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | class GetPaid_Data_Store { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Contains an instance of the data store class that we are working with. |
|
| 16 | - * |
|
| 17 | - * @var GetPaid_Data_Store |
|
| 18 | - */ |
|
| 19 | - private $instance = null; |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * Contains an array of default supported data stores. |
|
| 23 | - * Format of object name => class name. |
|
| 24 | - * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
| 25 | - * You can also pass something like item-<type> for item stores and |
|
| 26 | - * that type will be used first when available, if a store is requested like |
|
| 27 | - * this and doesn't exist, then the store would fall back to 'item'. |
|
| 28 | - * Ran through `getpaid_data_stores`. |
|
| 29 | - * |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - private $stores = array( |
|
| 33 | - 'item' => 'GetPaid_Item_Data_Store', |
|
| 34 | - 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
| 35 | - 'discount' => 'GetPaid_Discount_Data_Store', |
|
| 36 | - 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
| 37 | - 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
| 38 | - ); |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Contains the name of the current data store's class name. |
|
| 42 | - * |
|
| 43 | - * @var string |
|
| 44 | - */ |
|
| 45 | - private $current_class_name = ''; |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * The object type this store works with. |
|
| 49 | - * |
|
| 50 | - * @var string |
|
| 51 | - */ |
|
| 52 | - private $object_type = ''; |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * Tells GetPaid_Data_Store which object |
|
| 56 | - * store we want to work with. |
|
| 57 | - * |
|
| 58 | - * @param string $object_type Name of object. |
|
| 59 | - */ |
|
| 60 | - public function __construct( $object_type ) { |
|
| 61 | - $this->object_type = $object_type; |
|
| 62 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
| 63 | - |
|
| 64 | - // If this object type can't be found, check to see if we can load one |
|
| 65 | - // level up (so if item-type isn't found, we try item). |
|
| 66 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
| 67 | - $pieces = explode( '-', $object_type ); |
|
| 68 | - $object_type = $pieces[0]; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
| 72 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
| 73 | - if ( is_object( $store ) ) { |
|
| 74 | - $this->current_class_name = get_class( $store ); |
|
| 75 | - $this->instance = $store; |
|
| 76 | - } else { |
|
| 77 | - if ( ! class_exists( $store ) ) { |
|
| 78 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
| 79 | - } |
|
| 80 | - $this->current_class_name = $store; |
|
| 81 | - $this->instance = new $store(); |
|
| 82 | - } |
|
| 83 | - } else { |
|
| 84 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
| 85 | - } |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - /** |
|
| 89 | - * Only store the object type to avoid serializing the data store instance. |
|
| 90 | - * |
|
| 91 | - * @return array |
|
| 92 | - */ |
|
| 93 | - public function __sleep() { |
|
| 94 | - return array( 'object_type' ); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - /** |
|
| 98 | - * Re-run the constructor with the object type. |
|
| 99 | - * |
|
| 100 | - * @throws Exception When validation fails. |
|
| 101 | - */ |
|
| 102 | - public function __wakeup() { |
|
| 103 | - $this->__construct( $this->object_type ); |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - /** |
|
| 107 | - * Loads a data store. |
|
| 108 | - * |
|
| 109 | - * @param string $object_type Name of object. |
|
| 110 | - * |
|
| 111 | - * @since 1.0.19 |
|
| 112 | - * @throws Exception When validation fails. |
|
| 113 | - * @return GetPaid_Data_Store |
|
| 114 | - */ |
|
| 115 | - public static function load( $object_type ) { |
|
| 116 | - return new GetPaid_Data_Store( $object_type ); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * Returns the class name of the current data store. |
|
| 121 | - * |
|
| 122 | - * @since 1.0.19 |
|
| 123 | - * @return string |
|
| 124 | - */ |
|
| 125 | - public function get_current_class_name() { |
|
| 126 | - return $this->current_class_name; |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - /** |
|
| 130 | - * Returns the object type of the current data store. |
|
| 131 | - * |
|
| 132 | - * @since 1.0.19 |
|
| 133 | - * @return string |
|
| 134 | - */ |
|
| 135 | - public function get_object_type() { |
|
| 136 | - return $this->object_type; |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - /** |
|
| 140 | - * Reads an object from the data store. |
|
| 141 | - * |
|
| 142 | - * @since 1.0.19 |
|
| 143 | - * @param GetPaid_Data $data GetPaid data instance. |
|
| 144 | - */ |
|
| 145 | - public function read( &$data ) { |
|
| 146 | - $this->instance->read( $data ); |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - /** |
|
| 150 | - * Create an object in the data store. |
|
| 151 | - * |
|
| 152 | - * @since 1.0.19 |
|
| 153 | - * @param GetPaid_Data $data GetPaid data instance. |
|
| 154 | - */ |
|
| 155 | - public function create( &$data ) { |
|
| 156 | - $this->instance->create( $data ); |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - /** |
|
| 160 | - * Update an object in the data store. |
|
| 161 | - * |
|
| 162 | - * @since 1.0.19 |
|
| 163 | - * @param GetPaid_Data $data GetPaid data instance. |
|
| 164 | - */ |
|
| 165 | - public function update( &$data ) { |
|
| 166 | - $this->instance->update( $data ); |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - /** |
|
| 170 | - * Delete an object from the data store. |
|
| 171 | - * |
|
| 172 | - * @since 1.0.19 |
|
| 173 | - * @param GetPaid_Data $data GetPaid data instance. |
|
| 174 | - * @param array $args Array of args to pass to the delete method. |
|
| 175 | - */ |
|
| 176 | - public function delete( &$data, $args = array() ) { |
|
| 177 | - $this->instance->delete( $data, $args ); |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - /** |
|
| 181 | - * Data stores can define additional function. This passes |
|
| 182 | - * through to the instance if that function exists. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.19 |
|
| 185 | - * @param string $method Method. |
|
| 186 | - * @return mixed |
|
| 187 | - */ |
|
| 188 | - public function __call( $method, $parameters ) { |
|
| 189 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
| 190 | - $object = array_shift( $parameters ); |
|
| 191 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
| 192 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
| 193 | - } |
|
| 194 | - } |
|
| 14 | + /** |
|
| 15 | + * Contains an instance of the data store class that we are working with. |
|
| 16 | + * |
|
| 17 | + * @var GetPaid_Data_Store |
|
| 18 | + */ |
|
| 19 | + private $instance = null; |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * Contains an array of default supported data stores. |
|
| 23 | + * Format of object name => class name. |
|
| 24 | + * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
| 25 | + * You can also pass something like item-<type> for item stores and |
|
| 26 | + * that type will be used first when available, if a store is requested like |
|
| 27 | + * this and doesn't exist, then the store would fall back to 'item'. |
|
| 28 | + * Ran through `getpaid_data_stores`. |
|
| 29 | + * |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + private $stores = array( |
|
| 33 | + 'item' => 'GetPaid_Item_Data_Store', |
|
| 34 | + 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
| 35 | + 'discount' => 'GetPaid_Discount_Data_Store', |
|
| 36 | + 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
| 37 | + 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
| 38 | + ); |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Contains the name of the current data store's class name. |
|
| 42 | + * |
|
| 43 | + * @var string |
|
| 44 | + */ |
|
| 45 | + private $current_class_name = ''; |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * The object type this store works with. |
|
| 49 | + * |
|
| 50 | + * @var string |
|
| 51 | + */ |
|
| 52 | + private $object_type = ''; |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * Tells GetPaid_Data_Store which object |
|
| 56 | + * store we want to work with. |
|
| 57 | + * |
|
| 58 | + * @param string $object_type Name of object. |
|
| 59 | + */ |
|
| 60 | + public function __construct( $object_type ) { |
|
| 61 | + $this->object_type = $object_type; |
|
| 62 | + $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
| 63 | + |
|
| 64 | + // If this object type can't be found, check to see if we can load one |
|
| 65 | + // level up (so if item-type isn't found, we try item). |
|
| 66 | + if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
| 67 | + $pieces = explode( '-', $object_type ); |
|
| 68 | + $object_type = $pieces[0]; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + if ( array_key_exists( $object_type, $this->stores ) ) { |
|
| 72 | + $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
| 73 | + if ( is_object( $store ) ) { |
|
| 74 | + $this->current_class_name = get_class( $store ); |
|
| 75 | + $this->instance = $store; |
|
| 76 | + } else { |
|
| 77 | + if ( ! class_exists( $store ) ) { |
|
| 78 | + throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
| 79 | + } |
|
| 80 | + $this->current_class_name = $store; |
|
| 81 | + $this->instance = new $store(); |
|
| 82 | + } |
|
| 83 | + } else { |
|
| 84 | + throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
| 85 | + } |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + /** |
|
| 89 | + * Only store the object type to avoid serializing the data store instance. |
|
| 90 | + * |
|
| 91 | + * @return array |
|
| 92 | + */ |
|
| 93 | + public function __sleep() { |
|
| 94 | + return array( 'object_type' ); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + /** |
|
| 98 | + * Re-run the constructor with the object type. |
|
| 99 | + * |
|
| 100 | + * @throws Exception When validation fails. |
|
| 101 | + */ |
|
| 102 | + public function __wakeup() { |
|
| 103 | + $this->__construct( $this->object_type ); |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + /** |
|
| 107 | + * Loads a data store. |
|
| 108 | + * |
|
| 109 | + * @param string $object_type Name of object. |
|
| 110 | + * |
|
| 111 | + * @since 1.0.19 |
|
| 112 | + * @throws Exception When validation fails. |
|
| 113 | + * @return GetPaid_Data_Store |
|
| 114 | + */ |
|
| 115 | + public static function load( $object_type ) { |
|
| 116 | + return new GetPaid_Data_Store( $object_type ); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * Returns the class name of the current data store. |
|
| 121 | + * |
|
| 122 | + * @since 1.0.19 |
|
| 123 | + * @return string |
|
| 124 | + */ |
|
| 125 | + public function get_current_class_name() { |
|
| 126 | + return $this->current_class_name; |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + /** |
|
| 130 | + * Returns the object type of the current data store. |
|
| 131 | + * |
|
| 132 | + * @since 1.0.19 |
|
| 133 | + * @return string |
|
| 134 | + */ |
|
| 135 | + public function get_object_type() { |
|
| 136 | + return $this->object_type; |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + /** |
|
| 140 | + * Reads an object from the data store. |
|
| 141 | + * |
|
| 142 | + * @since 1.0.19 |
|
| 143 | + * @param GetPaid_Data $data GetPaid data instance. |
|
| 144 | + */ |
|
| 145 | + public function read( &$data ) { |
|
| 146 | + $this->instance->read( $data ); |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + /** |
|
| 150 | + * Create an object in the data store. |
|
| 151 | + * |
|
| 152 | + * @since 1.0.19 |
|
| 153 | + * @param GetPaid_Data $data GetPaid data instance. |
|
| 154 | + */ |
|
| 155 | + public function create( &$data ) { |
|
| 156 | + $this->instance->create( $data ); |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + /** |
|
| 160 | + * Update an object in the data store. |
|
| 161 | + * |
|
| 162 | + * @since 1.0.19 |
|
| 163 | + * @param GetPaid_Data $data GetPaid data instance. |
|
| 164 | + */ |
|
| 165 | + public function update( &$data ) { |
|
| 166 | + $this->instance->update( $data ); |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + /** |
|
| 170 | + * Delete an object from the data store. |
|
| 171 | + * |
|
| 172 | + * @since 1.0.19 |
|
| 173 | + * @param GetPaid_Data $data GetPaid data instance. |
|
| 174 | + * @param array $args Array of args to pass to the delete method. |
|
| 175 | + */ |
|
| 176 | + public function delete( &$data, $args = array() ) { |
|
| 177 | + $this->instance->delete( $data, $args ); |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + /** |
|
| 181 | + * Data stores can define additional function. This passes |
|
| 182 | + * through to the instance if that function exists. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.19 |
|
| 185 | + * @param string $method Method. |
|
| 186 | + * @return mixed |
|
| 187 | + */ |
|
| 188 | + public function __call( $method, $parameters ) { |
|
| 189 | + if ( is_callable( array( $this->instance, $method ) ) ) { |
|
| 190 | + $object = array_shift( $parameters ); |
|
| 191 | + $parameters = array_merge( array( &$object ), $parameters ); |
|
| 192 | + return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
| 193 | + } |
|
| 194 | + } |
|
| 195 | 195 | |
| 196 | 196 | } |
@@ -7,16 +7,16 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -if ( empty( $text ) ) { |
|
| 12 | +if (empty($text)) { |
|
| 13 | 13 | return; |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | echo aui()->alert( |
| 17 | 17 | array( |
| 18 | - 'content' => wp_kses_post( $text ), |
|
| 19 | - 'dismissible' => ! empty( $dismissible ), |
|
| 20 | - 'type' => empty( $class ) ? 'info' : str_replace( 'alert-', '', $class ), |
|
| 18 | + 'content' => wp_kses_post($text), |
|
| 19 | + 'dismissible' => !empty($dismissible), |
|
| 20 | + 'type' => empty($class) ? 'info' : str_replace('alert-', '', $class), |
|
| 21 | 21 | ) |
| 22 | 22 | ); |
@@ -7,6 +7,6 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | ?> |
| 12 | 12 | <hr class="featurette-divider" /> |
| 13 | 13 | \ No newline at end of file |
@@ -7,11 +7,11 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$tag = isset( $element['level'] ) ? trim( $element['level'] ) : 'h3'; |
|
| 13 | -$text = isset( $element['text'] ) ? trim( $element['text'] ) : ''; |
|
| 12 | +$tag = isset($element['level']) ? trim($element['level']) : 'h3'; |
|
| 13 | +$text = isset($element['text']) ? trim($element['text']) : ''; |
|
| 14 | 14 | |
| 15 | -if ( ! empty( $text ) ) { |
|
| 15 | +if (!empty($text)) { |
|
| 16 | 16 | echo "<$tag>$text</$tag>"; |
| 17 | 17 | } |
@@ -7,12 +7,12 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$placeholder = esc_attr( $input_label ); |
|
| 13 | -$label = sanitize_text_field( $button_label ); |
|
| 12 | +$placeholder = esc_attr($input_label); |
|
| 13 | +$label = sanitize_text_field($button_label); |
|
| 14 | 14 | |
| 15 | -if ( ! empty( $description ) ) { |
|
| 15 | +if (!empty($description)) { |
|
| 16 | 16 | $description = "<small class='form-text text-muted'>$description</small>"; |
| 17 | 17 | } else { |
| 18 | 18 | $description = ''; |
@@ -7,10 +7,10 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$text = isset( $element['text'] ) ? trim( $element['text'] ) : ''; |
|
| 12 | +$text = isset($element['text']) ? trim($element['text']) : ''; |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $text ) ) { |
|
| 14 | +if (!empty($text)) { |
|
| 15 | 15 | echo "<p>$text</p>"; |
| 16 | 16 | } |
@@ -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. |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if (!defined('ABSPATH')) { |
|
| 11 | 11 | exit; // Exit if accessed directly |
| 12 | 12 | } |
| 13 | 13 | |
@@ -21,39 +21,39 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param WP_Post $post |
| 23 | 23 | */ |
| 24 | - public static function output( $post ) { |
|
| 24 | + public static function output($post) { |
|
| 25 | 25 | |
| 26 | 26 | // Prepare the form. |
| 27 | - $form = new GetPaid_Payment_Form( $post ); |
|
| 27 | + $form = new GetPaid_Payment_Form($post); |
|
| 28 | 28 | |
| 29 | 29 | ?> |
| 30 | 30 | |
| 31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
| 32 | - <?php do_action( 'wpinv_payment_form_before_info_metabox', $form ); ?> |
|
| 32 | + <?php do_action('wpinv_payment_form_before_info_metabox', $form); ?> |
|
| 33 | 33 | |
| 34 | 34 | <div class="wpinv_payment_form_shortcode form-group row"> |
| 35 | 35 | <label for="wpinv_payment_form_shortcode" class="col-sm-12 col-form-label"> |
| 36 | - <?php _e( 'Payment Form Shortcode', 'invoicing' );?> |
|
| 37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
| 36 | + <?php _e('Payment Form Shortcode', 'invoicing'); ?> |
|
| 37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
| 38 | 38 | </label> |
| 39 | 39 | |
| 40 | 40 | <div class="col-sm-12"> |
| 41 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?>]" style="width: 100%;" /> |
|
| 41 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?>]" style="width: 100%;" /> |
|
| 42 | 42 | </div> |
| 43 | 43 | </div> |
| 44 | 44 | |
| 45 | 45 | <div class="wpinv_payment_form_buy_shortcode form-group row"> |
| 46 | 46 | <label for="wpinv_payment_form_buy_shortcode" class="col-sm-12 col-form-label"> |
| 47 | - <?php _e( 'Payment Button Shortcode', 'invoicing' );?> |
|
| 48 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
| 47 | + <?php _e('Payment Button Shortcode', 'invoicing'); ?> |
|
| 48 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
| 49 | 49 | </label> |
| 50 | 50 | |
| 51 | 51 | <div class="col-sm-12"> |
| 52 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?> button='Buy Now']" style="width: 100%;" /> |
|
| 52 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?> button='Buy Now']" style="width: 100%;" /> |
|
| 53 | 53 | </div> |
| 54 | 54 | </div> |
| 55 | 55 | |
| 56 | - <?php do_action( 'wpinv_payment_form_info_metabox', $form ); ?> |
|
| 56 | + <?php do_action('wpinv_payment_form_info_metabox', $form); ?> |
|
| 57 | 57 | </div> |
| 58 | 58 | <?php |
| 59 | 59 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | 'placeholder' => '[email protected]', |
| 18 | 18 | 'value' => '', |
| 19 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 19 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 20 | 20 | 'description' => '', |
| 21 | 21 | 'required' => true, |
| 22 | 22 | 'id' => 'mmdwqzpox', |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | array( |
| 35 | 35 | 'placeholder' => 'Jon', |
| 36 | 36 | 'value' => '', |
| 37 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 37 | + 'label' => __('First Name', 'invoicing'), |
|
| 38 | 38 | 'description' => '', |
| 39 | 39 | 'required' => false, |
| 40 | 40 | 'visible' => true, |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | array( |
| 45 | 45 | 'placeholder' => 'Snow', |
| 46 | 46 | 'value' => '', |
| 47 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 47 | + 'label' => __('Last Name', 'invoicing'), |
|
| 48 | 48 | 'description' => '', |
| 49 | 49 | 'required' => false, |
| 50 | 50 | 'visible' => true, |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | array( |
| 55 | 55 | 'placeholder' => '', |
| 56 | 56 | 'value' => '', |
| 57 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 57 | + 'label' => __('Address', 'invoicing'), |
|
| 58 | 58 | 'description' => '', |
| 59 | 59 | 'required' => false, |
| 60 | 60 | 'visible' => true, |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | array( |
| 65 | 65 | 'placeholder' => '', |
| 66 | 66 | 'value' => '', |
| 67 | - 'label' => __( 'City', 'invoicing' ), |
|
| 67 | + 'label' => __('City', 'invoicing'), |
|
| 68 | 68 | 'description' => '', |
| 69 | 69 | 'required' => false, |
| 70 | 70 | 'visible' => true, |
@@ -72,9 +72,9 @@ discard block |
||
| 72 | 72 | ), |
| 73 | 73 | |
| 74 | 74 | array( |
| 75 | - 'placeholder' => __( 'Select your country' ), |
|
| 75 | + 'placeholder' => __('Select your country'), |
|
| 76 | 76 | 'value' => '', |
| 77 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 77 | + 'label' => __('Country', 'invoicing'), |
|
| 78 | 78 | 'description' => '', |
| 79 | 79 | 'required' => false, |
| 80 | 80 | 'visible' => true, |
@@ -82,9 +82,9 @@ discard block |
||
| 82 | 82 | ), |
| 83 | 83 | |
| 84 | 84 | array( |
| 85 | - 'placeholder' => __( 'Choose a state', 'invoicing' ), |
|
| 85 | + 'placeholder' => __('Choose a state', 'invoicing'), |
|
| 86 | 86 | 'value' => '', |
| 87 | - 'label' => __( 'State / Province', 'invoicing' ), |
|
| 87 | + 'label' => __('State / Province', 'invoicing'), |
|
| 88 | 88 | 'description' => '', |
| 89 | 89 | 'required' => false, |
| 90 | 90 | 'visible' => true, |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | array( |
| 95 | 95 | 'placeholder' => '', |
| 96 | 96 | 'value' => '', |
| 97 | - 'label' => __( 'ZIP / Postcode', 'invoicing' ), |
|
| 97 | + 'label' => __('ZIP / Postcode', 'invoicing'), |
|
| 98 | 98 | 'description' => '', |
| 99 | 99 | 'required' => false, |
| 100 | 100 | 'visible' => true, |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | array( |
| 105 | 105 | 'placeholder' => '', |
| 106 | 106 | 'value' => '', |
| 107 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 107 | + 'label' => __('Phone', 'invoicing'), |
|
| 108 | 108 | 'description' => '', |
| 109 | 109 | 'required' => false, |
| 110 | 110 | 'visible' => true, |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | array( |
| 115 | 115 | 'placeholder' => '', |
| 116 | 116 | 'value' => '', |
| 117 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 117 | + 'label' => __('Company', 'invoicing'), |
|
| 118 | 118 | 'description' => '', |
| 119 | 119 | 'required' => false, |
| 120 | 120 | 'visible' => false, |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | array( |
| 125 | 125 | 'placeholder' => '', |
| 126 | 126 | 'value' => '', |
| 127 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 127 | + 'label' => __('VAT Number', 'invoicing'), |
|
| 128 | 128 | 'description' => '', |
| 129 | 129 | 'required' => false, |
| 130 | 130 | 'visible' => false, |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | ), |
| 147 | 147 | |
| 148 | 148 | array( |
| 149 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 149 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 150 | 150 | 'id' => 'gtscicd', |
| 151 | 151 | 'name' => 'gtscicd', |
| 152 | 152 | 'type' => 'gateway_select', |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | |
| 159 | 159 | 'value' =>'', |
| 160 | 160 | 'class' => 'btn-primary', |
| 161 | - 'label' => __( 'Pay Now »', 'invoicing' ), |
|
| 162 | - 'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 161 | + 'label' => __('Pay Now »', 'invoicing'), |
|
| 162 | + 'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 163 | 163 | 'id' => 'rtqljyy', |
| 164 | 164 | 'name' => 'rtqljyy', |
| 165 | 165 | 'type' => 'pay_button', |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | 'placeholder' => '[email protected]', |
| 18 | 18 | 'value' => '', |
| 19 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 19 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 20 | 20 | 'description' => '', |
| 21 | 21 | 'required' => true, |
| 22 | 22 | 'id' => 'mmdwqzpox', |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | ), |
| 39 | 39 | |
| 40 | 40 | array( |
| 41 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 41 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 42 | 42 | 'id' => 'gtscicd', |
| 43 | 43 | 'name' => 'gtscicd', |
| 44 | 44 | 'type' => 'gateway_select', |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | 'value' =>'', |
| 52 | 52 | 'class' => 'btn-primary', |
| 53 | - 'label' => __( 'Pay Now »', 'invoicing' ), |
|
| 54 | - 'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 53 | + 'label' => __('Pay Now »', 'invoicing'), |
|
| 54 | + 'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 55 | 55 | 'id' => 'rtqljyy', |
| 56 | 56 | 'name' => 'rtqljyy', |
| 57 | 57 | 'type' => 'pay_button', |