@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 8 | +if (!defined('ABSPATH')) { |
|
| 9 | 9 | exit; // Exit if accessed directly |
| 10 | 10 | } |
| 11 | 11 | |
@@ -19,12 +19,12 @@ discard block |
||
| 19 | 19 | * |
| 20 | 20 | * @param WP_Post $post |
| 21 | 21 | */ |
| 22 | - public static function output( $post ) { |
|
| 22 | + public static function output($post) { |
|
| 23 | 23 | |
| 24 | 24 | // Fetch the invoice. |
| 25 | - $invoice = new WPInv_Invoice( $post ); |
|
| 25 | + $invoice = new WPInv_Invoice($post); |
|
| 26 | 26 | |
| 27 | - do_action( 'wpinv_metabox_resend_invoice_before', $invoice ); |
|
| 27 | + do_action('wpinv_metabox_resend_invoice_before', $invoice); |
|
| 28 | 28 | |
| 29 | 29 | $invoice_actions = array( |
| 30 | 30 | 'resend-email' => array( |
@@ -38,11 +38,11 @@ discard block |
||
| 38 | 38 | 'getpaid-nonce', |
| 39 | 39 | 'getpaid-nonce' |
| 40 | 40 | ), |
| 41 | - 'label' => __( 'Resend Invoice', 'invoicing' ), |
|
| 41 | + 'label' => __('Resend Invoice', 'invoicing'), |
|
| 42 | 42 | ), |
| 43 | 43 | ); |
| 44 | 44 | |
| 45 | - if ( $invoice->needs_payment() ) { |
|
| 45 | + if ($invoice->needs_payment()) { |
|
| 46 | 46 | |
| 47 | 47 | $invoice_actions['send-reminder'] = array( |
| 48 | 48 | 'url' => wp_nonce_url( |
@@ -55,29 +55,29 @@ discard block |
||
| 55 | 55 | 'getpaid-nonce', |
| 56 | 56 | 'getpaid-nonce' |
| 57 | 57 | ), |
| 58 | - 'label' => __( 'Send Reminder', 'invoicing' ), |
|
| 58 | + 'label' => __('Send Reminder', 'invoicing'), |
|
| 59 | 59 | ); |
| 60 | 60 | |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - $invoice_actions = apply_filters( 'getpaid_edit_invoice_actions', $invoice_actions, $invoice ); |
|
| 63 | + $invoice_actions = apply_filters('getpaid_edit_invoice_actions', $invoice_actions, $invoice); |
|
| 64 | 64 | |
| 65 | - foreach ( $invoice_actions as $key => $action ) { |
|
| 65 | + foreach ($invoice_actions as $key => $action) { |
|
| 66 | 66 | |
| 67 | - if ( 'resend-email' === $key ) { |
|
| 68 | - echo wp_kses_post( wpautop( __( "This will send a copy of the invoice to the customer's email address.", 'invoicing' ) ) ); |
|
| 67 | + if ('resend-email' === $key) { |
|
| 68 | + echo wp_kses_post(wpautop(__("This will send a copy of the invoice to the customer's email address.", 'invoicing'))); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | printf( |
| 72 | 72 | '<p class="wpi-meta-row wpi-%s"><a href="%s" class="button button-secondary">%s</a>', |
| 73 | - esc_attr( $key ), |
|
| 74 | - esc_url( $action['url'] ), |
|
| 75 | - esc_html( $action['label'] ) |
|
| 73 | + esc_attr($key), |
|
| 74 | + esc_url($action['url']), |
|
| 75 | + esc_html($action['label']) |
|
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - do_action( 'wpinv_metabox_resend_invoice_after', $invoice ); |
|
| 80 | + do_action('wpinv_metabox_resend_invoice_after', $invoice); |
|
| 81 | 81 | |
| 82 | 82 | } |
| 83 | 83 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | 4 | exit; // Exit if accessed directly |
| 5 | 5 | } |
| 6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * @return AUI|null |
| 36 | 36 | */ |
| 37 | 37 | public static function instance() { |
| 38 | - if ( self::$instance == null ) { |
|
| 38 | + if (self::$instance == null) { |
|
| 39 | 39 | self::$instance = new AUI(); |
| 40 | 40 | } |
| 41 | 41 | |
@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | * @since 1.0.0 |
| 49 | 49 | */ |
| 50 | 50 | private function __construct() { |
| 51 | - if ( function_exists( "__autoload" ) ) { |
|
| 52 | - spl_autoload_register( "__autoload" ); |
|
| 51 | + if (function_exists("__autoload")) { |
|
| 52 | + spl_autoload_register("__autoload"); |
|
| 53 | 53 | } |
| 54 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
| 54 | + spl_autoload_register(array($this, 'autoload')); |
|
| 55 | 55 | |
| 56 | 56 | // load options |
| 57 | 57 | self::$options = get_option('aui_options'); |
@@ -64,11 +64,11 @@ discard block |
||
| 64 | 64 | * |
| 65 | 65 | * @param $classname |
| 66 | 66 | */ |
| 67 | - private function autoload( $classname ) { |
|
| 68 | - $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
| 69 | - $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
| 70 | - if ( $file_path && is_readable( $file_path ) ) { |
|
| 71 | - include_once( $file_path ); |
|
| 67 | + private function autoload($classname) { |
|
| 68 | + $class = str_replace('_', '-', strtolower($classname)); |
|
| 69 | + $file_path = trailingslashit(dirname(__FILE__)) . "components/class-" . $class . '.php'; |
|
| 70 | + if ($file_path && is_readable($file_path)) { |
|
| 71 | + include_once($file_path); |
|
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
@@ -79,34 +79,34 @@ discard block |
||
| 79 | 79 | * |
| 80 | 80 | * @return string|void |
| 81 | 81 | */ |
| 82 | - public function get_option( $option ){ |
|
| 82 | + public function get_option($option) { |
|
| 83 | 83 | $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
| 84 | 84 | |
| 85 | - if ( ! $result && $option) { |
|
| 86 | - if( $option == 'color_primary' ){ |
|
| 85 | + if (!$result && $option) { |
|
| 86 | + if ($option == 'color_primary') { |
|
| 87 | 87 | $result = AUI_PRIMARY_COLOR; |
| 88 | - }elseif( $option == 'color_secondary' ){ |
|
| 88 | + }elseif ($option == 'color_secondary') { |
|
| 89 | 89 | $result = AUI_SECONDARY_COLOR; |
| 90 | 90 | } |
| 91 | 91 | } |
| 92 | 92 | return $result; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - public function render( $items = array(), $echo = false ) { |
|
| 95 | + public function render($items = array(), $echo = false) { |
|
| 96 | 96 | $output = ''; |
| 97 | 97 | |
| 98 | - if ( ! empty( $items ) ) { |
|
| 99 | - foreach ( $items as $args ) { |
|
| 100 | - $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
| 101 | - if ( $render && method_exists( __CLASS__, $render ) ) { |
|
| 102 | - $output .= $this->$render( $args ); |
|
| 98 | + if (!empty($items)) { |
|
| 99 | + foreach ($items as $args) { |
|
| 100 | + $render = isset($args['render']) ? $args['render'] : ''; |
|
| 101 | + if ($render && method_exists(__CLASS__, $render)) { |
|
| 102 | + $output .= $this->$render($args); |
|
| 103 | 103 | } |
| 104 | 104 | } |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - if ( $echo ) { |
|
| 107 | + if ($echo) { |
|
| 108 | 108 | echo $output; |
| 109 | - }else{ |
|
| 109 | + } else { |
|
| 110 | 110 | return $output; |
| 111 | 111 | } |
| 112 | 112 | |
@@ -122,12 +122,12 @@ discard block |
||
| 122 | 122 | * |
| 123 | 123 | * @return string The rendered component. |
| 124 | 124 | */ |
| 125 | - public function alert( $args = array(), $echo = false ) { |
|
| 126 | - $output = AUI_Component_Alert::get( $args ); |
|
| 125 | + public function alert($args = array(), $echo = false) { |
|
| 126 | + $output = AUI_Component_Alert::get($args); |
|
| 127 | 127 | |
| 128 | - if ( $echo ) { |
|
| 128 | + if ($echo) { |
|
| 129 | 129 | echo $output; |
| 130 | - }else{ |
|
| 130 | + } else { |
|
| 131 | 131 | return $output; |
| 132 | 132 | } |
| 133 | 133 | } |
@@ -142,12 +142,12 @@ discard block |
||
| 142 | 142 | * |
| 143 | 143 | * @return string The rendered component. |
| 144 | 144 | */ |
| 145 | - public function input( $args = array(), $echo = false ) { |
|
| 146 | - $output = AUI_Component_Input::input( $args ); |
|
| 145 | + public function input($args = array(), $echo = false) { |
|
| 146 | + $output = AUI_Component_Input::input($args); |
|
| 147 | 147 | |
| 148 | - if ( $echo ) { |
|
| 148 | + if ($echo) { |
|
| 149 | 149 | echo $output; |
| 150 | - }else{ |
|
| 150 | + } else { |
|
| 151 | 151 | return $output; |
| 152 | 152 | } |
| 153 | 153 | } |
@@ -162,12 +162,12 @@ discard block |
||
| 162 | 162 | * |
| 163 | 163 | * @return string The rendered component. |
| 164 | 164 | */ |
| 165 | - public function textarea( $args = array(), $echo = false ) { |
|
| 166 | - $output = AUI_Component_Input::textarea( $args ); |
|
| 165 | + public function textarea($args = array(), $echo = false) { |
|
| 166 | + $output = AUI_Component_Input::textarea($args); |
|
| 167 | 167 | |
| 168 | - if ( $echo ) { |
|
| 168 | + if ($echo) { |
|
| 169 | 169 | echo $output; |
| 170 | - }else{ |
|
| 170 | + } else { |
|
| 171 | 171 | return $output; |
| 172 | 172 | } |
| 173 | 173 | } |
@@ -182,12 +182,12 @@ discard block |
||
| 182 | 182 | * |
| 183 | 183 | * @return string The rendered component. |
| 184 | 184 | */ |
| 185 | - public function button( $args = array(), $echo = false ) { |
|
| 186 | - $output = AUI_Component_Button::get( $args ); |
|
| 185 | + public function button($args = array(), $echo = false) { |
|
| 186 | + $output = AUI_Component_Button::get($args); |
|
| 187 | 187 | |
| 188 | - if ( $echo ) { |
|
| 188 | + if ($echo) { |
|
| 189 | 189 | echo $output; |
| 190 | - }else{ |
|
| 190 | + } else { |
|
| 191 | 191 | return $output; |
| 192 | 192 | } |
| 193 | 193 | } |
@@ -202,26 +202,26 @@ discard block |
||
| 202 | 202 | * |
| 203 | 203 | * @return string The rendered component. |
| 204 | 204 | */ |
| 205 | - public function badge( $args = array(), $echo = false ) { |
|
| 205 | + public function badge($args = array(), $echo = false) { |
|
| 206 | 206 | $defaults = array( |
| 207 | 207 | 'class' => 'badge badge-primary align-middle', |
| 208 | 208 | ); |
| 209 | 209 | |
| 210 | 210 | // maybe set type. |
| 211 | - if ( empty( $args['href'] ) ) { |
|
| 211 | + if (empty($args['href'])) { |
|
| 212 | 212 | $defaults['type'] = 'badge'; |
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | /** |
| 216 | 216 | * Parse incoming $args into an array and merge it with $defaults |
| 217 | 217 | */ |
| 218 | - $args = wp_parse_args( $args, $defaults ); |
|
| 218 | + $args = wp_parse_args($args, $defaults); |
|
| 219 | 219 | |
| 220 | - $output = AUI_Component_Button::get( $args ); |
|
| 220 | + $output = AUI_Component_Button::get($args); |
|
| 221 | 221 | |
| 222 | - if ( $echo ) { |
|
| 222 | + if ($echo) { |
|
| 223 | 223 | echo $output; |
| 224 | - }else{ |
|
| 224 | + } else { |
|
| 225 | 225 | return $output; |
| 226 | 226 | } |
| 227 | 227 | } |
@@ -236,12 +236,12 @@ discard block |
||
| 236 | 236 | * |
| 237 | 237 | * @return string The rendered component. |
| 238 | 238 | */ |
| 239 | - public function dropdown( $args = array(), $echo = false ) { |
|
| 240 | - $output = AUI_Component_Dropdown::get( $args ); |
|
| 239 | + public function dropdown($args = array(), $echo = false) { |
|
| 240 | + $output = AUI_Component_Dropdown::get($args); |
|
| 241 | 241 | |
| 242 | - if ( $echo ) { |
|
| 242 | + if ($echo) { |
|
| 243 | 243 | echo $output; |
| 244 | - }else{ |
|
| 244 | + } else { |
|
| 245 | 245 | return $output; |
| 246 | 246 | } |
| 247 | 247 | } |
@@ -256,12 +256,12 @@ discard block |
||
| 256 | 256 | * |
| 257 | 257 | * @return string The rendered component. |
| 258 | 258 | */ |
| 259 | - public function select( $args = array(), $echo = false ) { |
|
| 260 | - $output = AUI_Component_Input::select( $args ); |
|
| 259 | + public function select($args = array(), $echo = false) { |
|
| 260 | + $output = AUI_Component_Input::select($args); |
|
| 261 | 261 | |
| 262 | - if ( $echo ) { |
|
| 262 | + if ($echo) { |
|
| 263 | 263 | echo $output; |
| 264 | - }else{ |
|
| 264 | + } else { |
|
| 265 | 265 | return $output; |
| 266 | 266 | } |
| 267 | 267 | } |
@@ -276,12 +276,12 @@ discard block |
||
| 276 | 276 | * |
| 277 | 277 | * @return string The rendered component. |
| 278 | 278 | */ |
| 279 | - public function radio( $args = array(), $echo = false ) { |
|
| 280 | - $output = AUI_Component_Input::radio( $args ); |
|
| 279 | + public function radio($args = array(), $echo = false) { |
|
| 280 | + $output = AUI_Component_Input::radio($args); |
|
| 281 | 281 | |
| 282 | - if ( $echo ) { |
|
| 282 | + if ($echo) { |
|
| 283 | 283 | echo $output; |
| 284 | - }else{ |
|
| 284 | + } else { |
|
| 285 | 285 | return $output; |
| 286 | 286 | } |
| 287 | 287 | } |
@@ -296,12 +296,12 @@ discard block |
||
| 296 | 296 | * |
| 297 | 297 | * @return string The rendered component. |
| 298 | 298 | */ |
| 299 | - public function pagination( $args = array(), $echo = false ) { |
|
| 300 | - $output = AUI_Component_Pagination::get( $args ); |
|
| 299 | + public function pagination($args = array(), $echo = false) { |
|
| 300 | + $output = AUI_Component_Pagination::get($args); |
|
| 301 | 301 | |
| 302 | - if ( $echo ) { |
|
| 302 | + if ($echo) { |
|
| 303 | 303 | echo $output; |
| 304 | - }else{ |
|
| 304 | + } else { |
|
| 305 | 305 | return $output; |
| 306 | 306 | } |
| 307 | 307 | } |
@@ -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 | 12 | aui()->alert( |
| 13 | 13 | array( |
| 14 | - 'content' => esc_html__( 'The gateway select box will appear here', 'invoicing' ), |
|
| 14 | + 'content' => esc_html__('The gateway select box will appear here', 'invoicing'), |
|
| 15 | 15 | 'type' => 'info', |
| 16 | 16 | ), |
| 17 | 17 | true |
@@ -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 | 12 | aui()->alert( |
| 13 | 13 | array( |
| 14 | - 'content' => esc_html__( 'The total payable amount will appear here', 'invoicing' ), |
|
| 14 | + 'content' => esc_html__('The total payable amount will appear here', 'invoicing'), |
|
| 15 | 15 | 'type' => 'info', |
| 16 | 16 | ), |
| 17 | 17 | true |
@@ -7,17 +7,17 @@ |
||
| 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 | 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 | true |
| 23 | 23 | ); |
@@ -7,17 +7,17 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // Prepare the selectable items. |
| 13 | 13 | $selectable = array(); |
| 14 | -foreach ( $form->get_items() as $item ) { |
|
| 15 | - if ( ! $item->is_required ) { |
|
| 16 | - $selectable[ $item->get_id() ] = strip_tags( $item->get_name() . ' — ' . wpinv_price( $item->get_initial_price() ) ); |
|
| 14 | +foreach ($form->get_items() as $item) { |
|
| 15 | + if (!$item->is_required) { |
|
| 16 | + $selectable[$item->get_id()] = strip_tags($item->get_name() . ' — ' . wpinv_price($item->get_initial_price())); |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if ( empty( $selectable ) ) { |
|
| 20 | +if (empty($selectable)) { |
|
| 21 | 21 | return; |
| 22 | 22 | } |
| 23 | 23 | |
@@ -27,9 +27,9 @@ discard block |
||
| 27 | 27 | aui()->select( |
| 28 | 28 | array( |
| 29 | 29 | 'name' => 'getpaid-payment-form-selected-item', |
| 30 | - 'id' => 'getpaid-payment-form-selected-item' . uniqid( '_' ), |
|
| 30 | + 'id' => 'getpaid-payment-form-selected-item' . uniqid('_'), |
|
| 31 | 31 | 'required' => true, |
| 32 | - 'label' => __( 'Select Item', 'invoicing' ), |
|
| 32 | + 'label' => __('Select Item', 'invoicing'), |
|
| 33 | 33 | 'label_type' => 'vertical', |
| 34 | 34 | 'inline' => false, |
| 35 | 35 | 'options' => $selectable, |
@@ -7,17 +7,17 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // Prepare the selectable items. |
| 13 | 13 | $selectable = array(); |
| 14 | -foreach ( $form->get_items() as $item ) { |
|
| 15 | - if ( ! $item->is_required ) { |
|
| 16 | - $selectable[ $item->get_id() ] = $item->get_name() . ' — ' . wpinv_price( $item->get_initial_price() ); |
|
| 14 | +foreach ($form->get_items() as $item) { |
|
| 15 | + if (!$item->is_required) { |
|
| 16 | + $selectable[$item->get_id()] = $item->get_name() . ' — ' . wpinv_price($item->get_initial_price()); |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if ( empty( $selectable ) ) { |
|
| 20 | +if (empty($selectable)) { |
|
| 21 | 21 | return; |
| 22 | 22 | } |
| 23 | 23 | |
@@ -27,9 +27,9 @@ discard block |
||
| 27 | 27 | aui()->radio( |
| 28 | 28 | array( |
| 29 | 29 | 'name' => 'getpaid-payment-form-selected-item', |
| 30 | - 'id' => 'getpaid-payment-form-selected-item' . uniqid( '_' ), |
|
| 30 | + 'id' => 'getpaid-payment-form-selected-item' . uniqid('_'), |
|
| 31 | 31 | 'required' => true, |
| 32 | - 'label' => __( 'Select Item', 'invoicing' ), |
|
| 32 | + 'label' => __('Select Item', 'invoicing'), |
|
| 33 | 33 | 'label_type' => 'vertical', |
| 34 | 34 | 'class' => 'w-auto', |
| 35 | 35 | 'inline' => false, |
@@ -1,51 +1,51 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | // don't load directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | - die( '-1' ); |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | + die('-1'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -do_action( 'wpinv_email_before_billing_details', $invoice ); ?> |
|
| 7 | +do_action('wpinv_email_before_billing_details', $invoice); ?> |
|
| 8 | 8 | <div id="wpinv-email-billing"> |
| 9 | - <h3 class="wpinv-address-t"><?php echo esc_html( apply_filters( 'wpinv_email_billing_title', __( 'Billing Details', 'invoicing' ) ) ); ?></h3> |
|
| 9 | + <h3 class="wpinv-address-t"><?php echo esc_html(apply_filters('wpinv_email_billing_title', __('Billing Details', 'invoicing'))); ?></h3> |
|
| 10 | 10 | |
| 11 | 11 | <table class="table table-bordered table-sm wpi-billing-details"> |
| 12 | 12 | <tbody> |
| 13 | - <?php do_action( 'wpinv_email_billing_fields_first', $invoice ); ?> |
|
| 13 | + <?php do_action('wpinv_email_billing_fields_first', $invoice); ?> |
|
| 14 | 14 | <tr class="wpi-receipt-name"> |
| 15 | - <th class="text-left"><?php esc_html_e( 'Name', 'invoicing' ); ?></th> |
|
| 15 | + <th class="text-left"><?php esc_html_e('Name', 'invoicing'); ?></th> |
|
| 16 | 16 | <td> |
| 17 | 17 | <?php |
| 18 | - if ( $sent_to_admin && $invoice->get_user_id() ) { |
|
| 18 | + if ($sent_to_admin && $invoice->get_user_id()) { |
|
| 19 | 19 | ?> |
| 20 | -<a href="<?php echo esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), self_admin_url( 'user-edit.php' ) ) ); ?>"><?php echo esc_html( $invoice->get_user_full_name() ); ?></a> |
|
| 20 | +<a href="<?php echo esc_url(add_query_arg('user_id', $invoice->get_user_id(), self_admin_url('user-edit.php'))); ?>"><?php echo esc_html($invoice->get_user_full_name()); ?></a> |
|
| 21 | 21 | <?php |
| 22 | 22 | } else { |
| 23 | - echo esc_html( $invoice->get_user_full_name() ); } |
|
| 23 | + echo esc_html($invoice->get_user_full_name()); } |
|
| 24 | 24 | ?> |
| 25 | 25 | </td> |
| 26 | 26 | </tr> |
| 27 | 27 | <tr class="wpi-receipt-email"> |
| 28 | - <th class="text-left"><?php esc_html_e( 'Email', 'invoicing' ); ?></th> |
|
| 29 | - <td><?php echo esc_html( sanitize_email( $invoice->get_email() ) ); ?></td> |
|
| 28 | + <th class="text-left"><?php esc_html_e('Email', 'invoicing'); ?></th> |
|
| 29 | + <td><?php echo esc_html(sanitize_email($invoice->get_email())); ?></td> |
|
| 30 | 30 | </tr> |
| 31 | - <?php if ( $invoice->get_company() ) { ?> |
|
| 31 | + <?php if ($invoice->get_company()) { ?> |
|
| 32 | 32 | <tr class="wpi-receipt-company"> |
| 33 | - <th class="text-left"><?php esc_html_e( 'Company', 'invoicing' ); ?></th> |
|
| 34 | - <td><?php echo esc_html( $invoice->get_company() ); ?></td> |
|
| 33 | + <th class="text-left"><?php esc_html_e('Company', 'invoicing'); ?></th> |
|
| 34 | + <td><?php echo esc_html($invoice->get_company()); ?></td> |
|
| 35 | 35 | </tr> |
| 36 | 36 | <?php } ?> |
| 37 | 37 | <tr class="wpi-receipt-address"> |
| 38 | - <th class="text-left"><?php esc_html_e( 'Address', 'invoicing' ); ?></th> |
|
| 39 | - <td><?php echo wp_kses_post( wpinv_get_invoice_address_markup( $invoice->get_user_info() ) ); ?></td> |
|
| 38 | + <th class="text-left"><?php esc_html_e('Address', 'invoicing'); ?></th> |
|
| 39 | + <td><?php echo wp_kses_post(wpinv_get_invoice_address_markup($invoice->get_user_info())); ?></td> |
|
| 40 | 40 | </tr> |
| 41 | - <?php if ( $invoice->get_phone() ) { ?> |
|
| 41 | + <?php if ($invoice->get_phone()) { ?> |
|
| 42 | 42 | <tr class="wpi-receipt-phone"> |
| 43 | - <th class="text-left"><?php esc_html_e( 'Phone', 'invoicing' ); ?></th> |
|
| 44 | - <td><?php echo esc_html( $invoice->get_phone() ); ?></td> |
|
| 43 | + <th class="text-left"><?php esc_html_e('Phone', 'invoicing'); ?></th> |
|
| 44 | + <td><?php echo esc_html($invoice->get_phone()); ?></td> |
|
| 45 | 45 | </tr> |
| 46 | 46 | <?php } ?> |
| 47 | - <?php do_action( 'wpinv_email_billing_fields_last', $invoice ); ?> |
|
| 47 | + <?php do_action('wpinv_email_billing_fields_last', $invoice); ?> |
|
| 48 | 48 | </tbody> |
| 49 | 49 | </table> |
| 50 | 50 | </div> |
| 51 | -<?php do_action( 'wpinv_email_after_billing_details', $invoice ); ?> |
|
| 51 | +<?php do_action('wpinv_email_after_billing_details', $invoice); ?> |
|
@@ -1,20 +1,20 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // don't load directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | - die( '-1' ); |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | + die('-1'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -if ( ! isset( $email_heading ) ) { |
|
| 7 | +if (!isset($email_heading)) { |
|
| 8 | 8 | global $email_heading; |
| 9 | 9 | } |
| 10 | 10 | ?> |
| 11 | 11 | <!DOCTYPE html> |
| 12 | 12 | <html dir="<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>"> |
| 13 | 13 | <head> |
| 14 | - <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" /> |
|
| 14 | + <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" /> |
|
| 15 | 15 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 16 | 16 | <meta name="robots" content="noindex,nofollow"> |
| 17 | - <title><?php echo esc_html( wpinv_get_blogname() ); ?></title> |
|
| 17 | + <title><?php echo esc_html(wpinv_get_blogname()); ?></title> |
|
| 18 | 18 | </head> |
| 19 | 19 | <body <?php echo is_rtl() ? 'rightmargin' : 'leftmargin'; ?>="0" marginwidth="0" topmargin="0" marginheight="0" offset="0"> |
| 20 | 20 | <div id="wrapper" dir="<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>"> |
@@ -23,21 +23,21 @@ discard block |
||
| 23 | 23 | <td align="center" valign="top"> |
| 24 | 24 | <div id="template_header_image"> |
| 25 | 25 | <?php |
| 26 | - $img = wpinv_get_option( 'email_header_image', '' ); |
|
| 27 | - if ( $img ) { |
|
| 28 | - echo '<p style="margin-top:0;"><img style="max-width:100%" src="' . esc_url( $img ) . '" alt="' . esc_attr( wpinv_get_blogname() ) . '" /></p>'; |
|
| 26 | + $img = wpinv_get_option('email_header_image', ''); |
|
| 27 | + if ($img) { |
|
| 28 | + echo '<p style="margin-top:0;"><img style="max-width:100%" src="' . esc_url($img) . '" alt="' . esc_attr(wpinv_get_blogname()) . '" /></p>'; |
|
| 29 | 29 | } |
| 30 | 30 | ?> |
| 31 | 31 | </div> |
| 32 | 32 | <table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_container"> |
| 33 | - <?php if ( ! empty( $email_heading ) ) { ?> |
|
| 33 | + <?php if (!empty($email_heading)) { ?> |
|
| 34 | 34 | <tr> |
| 35 | 35 | <td align="center" valign="top"> |
| 36 | 36 | <!-- Header --> |
| 37 | 37 | <table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_header"> |
| 38 | 38 | <tr> |
| 39 | 39 | <td id="header_wrapper"> |
| 40 | - <h1><?php echo esc_html( $email_heading ); ?></h1> |
|
| 40 | + <h1><?php echo esc_html($email_heading); ?></h1> |
|
| 41 | 41 | </td> |
| 42 | 42 | </tr> |
| 43 | 43 | </table> |