@@ -12,218 +12,218 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Graph_Downloader { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var GetPaid_Reports_Report |
|
| 17 | - */ |
|
| 18 | - public $handler; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Class constructor. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function __construct() { |
|
| 25 | - $this->handler = new GetPaid_Reports_Report(); |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * Prepares the datastore handler. |
|
| 30 | - * |
|
| 31 | - * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
|
| 32 | - */ |
|
| 33 | - public function prepare_handler( $graph ) { |
|
| 34 | - |
|
| 35 | - if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | - wp_die( esc_html__( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - return new $this->handler->views[ $graph ]['class'](); |
|
| 40 | - |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Prepares the output stream. |
|
| 45 | - * |
|
| 46 | - * @return resource |
|
| 47 | - */ |
|
| 48 | - public function prepare_output() { |
|
| 49 | - |
|
| 50 | - $output = fopen( 'php://output', 'w' ); |
|
| 51 | - |
|
| 52 | - if ( false === $output ) { |
|
| 53 | - wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 54 | - } |
|
| 55 | - |
|
| 56 | - return $output; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Prepares the file type. |
|
| 61 | - * |
|
| 62 | - * @return string |
|
| 63 | - */ |
|
| 64 | - public function prepare_file_type( $graph ) { |
|
| 65 | - |
|
| 66 | - $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | - $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 68 | - |
|
| 69 | - header( "Content-Type:application/$file_type" ); |
|
| 70 | - header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 71 | - |
|
| 72 | - return $file_type; |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * Handles the actual download. |
|
| 77 | - * |
|
| 78 | - */ |
|
| 79 | - public function download( $graph ) { |
|
| 80 | - global $wpdb; |
|
| 81 | - |
|
| 82 | - $handler = $this->prepare_handler( $graph ); |
|
| 83 | - $stream = $this->prepare_output(); |
|
| 84 | - $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | - $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | - $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | - |
|
| 88 | - if ( 'csv' == $file_type ) { |
|
| 89 | - $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | - } elseif ( 'xml' == $file_type ) { |
|
| 91 | - $this->download_xml( $stats, $stream, $headers ); |
|
| 92 | - } else { |
|
| 93 | - $this->download_json( $stats, $stream, $headers ); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - fclose( $stream ); |
|
| 97 | - exit; |
|
| 98 | - } |
|
| 99 | - |
|
| 100 | - /** |
|
| 101 | - * Downloads graph as csv |
|
| 102 | - * |
|
| 103 | - * @param array $stats The stats being downloaded. |
|
| 104 | - * @param resource $stream The stream to output to. |
|
| 105 | - * @param array $headers The fields to stream. |
|
| 106 | - * @since 1.0.19 |
|
| 107 | - */ |
|
| 108 | - public function download_csv( $stats, $stream, $headers ) { |
|
| 109 | - |
|
| 110 | - // Output the csv column headers. |
|
| 111 | - fputcsv( $stream, $headers ); |
|
| 112 | - |
|
| 113 | - // Loop through |
|
| 114 | - foreach ( $stats as $stat ) { |
|
| 115 | - $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | - $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | - fputcsv( $stream, $row ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Downloads graph as json |
|
| 124 | - * |
|
| 125 | - * @param array $stats The stats being downloaded. |
|
| 126 | - * @param resource $stream The stream to output to. |
|
| 127 | - * @param array $headers The fields to stream. |
|
| 128 | - * @since 1.0.19 |
|
| 129 | - */ |
|
| 130 | - public function download_json( $stats, $stream, $headers ) { |
|
| 131 | - |
|
| 132 | - $prepared = array(); |
|
| 133 | - |
|
| 134 | - // Loop through |
|
| 135 | - foreach ( $stats as $stat ) { |
|
| 136 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 140 | - |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * Downloads graph as xml |
|
| 145 | - * |
|
| 146 | - * @param array $stats The stats being downloaded. |
|
| 147 | - * @param resource $stream The stream to output to. |
|
| 148 | - * @param array $headers The fields to stream. |
|
| 149 | - * @since 1.0.19 |
|
| 150 | - */ |
|
| 151 | - public function download_xml( $stats, $stream, $headers ) { |
|
| 152 | - |
|
| 153 | - $prepared = array(); |
|
| 154 | - |
|
| 155 | - // Loop through |
|
| 156 | - foreach ( $stats as $stat ) { |
|
| 157 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - $xml = new SimpleXMLElement( '<?xml version="1.0"?><data></data>' ); |
|
| 161 | - $this->convert_array_xml( $prepared, $xml ); |
|
| 162 | - |
|
| 163 | - fwrite( $stream, $xml->asXML() ); |
|
| 164 | - |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - /** |
|
| 168 | - * Converts stats array to xml |
|
| 169 | - * |
|
| 170 | - * @access public |
|
| 171 | - * @since 1.0.19 |
|
| 172 | - */ |
|
| 173 | - public function convert_array_xml( $data, $xml ) { |
|
| 174 | - |
|
| 175 | - // Loop through |
|
| 176 | - foreach ( $data as $key => $value ) { |
|
| 177 | - |
|
| 178 | - $key = preg_replace( '/[^A-Za-z0-9_\-]/', '', $key ); |
|
| 179 | - |
|
| 180 | - if ( is_array( $value ) ) { |
|
| 181 | - |
|
| 182 | - if ( is_numeric( $key ) ) { |
|
| 183 | - $key = 'item' . $key; //dealing with <0/>..<n/> issues |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - $subnode = $xml->addChild( $key ); |
|
| 187 | - $this->convert_array_xml( $value, $subnode ); |
|
| 188 | - |
|
| 189 | - } else { |
|
| 190 | - $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 191 | - } |
|
| 15 | + /** |
|
| 16 | + * @var GetPaid_Reports_Report |
|
| 17 | + */ |
|
| 18 | + public $handler; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Class constructor. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function __construct() { |
|
| 25 | + $this->handler = new GetPaid_Reports_Report(); |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * Prepares the datastore handler. |
|
| 30 | + * |
|
| 31 | + * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
|
| 32 | + */ |
|
| 33 | + public function prepare_handler( $graph ) { |
|
| 34 | + |
|
| 35 | + if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | + wp_die( esc_html__( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + return new $this->handler->views[ $graph ]['class'](); |
|
| 40 | + |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Prepares the output stream. |
|
| 45 | + * |
|
| 46 | + * @return resource |
|
| 47 | + */ |
|
| 48 | + public function prepare_output() { |
|
| 49 | + |
|
| 50 | + $output = fopen( 'php://output', 'w' ); |
|
| 51 | + |
|
| 52 | + if ( false === $output ) { |
|
| 53 | + wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 54 | + } |
|
| 55 | + |
|
| 56 | + return $output; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Prepares the file type. |
|
| 61 | + * |
|
| 62 | + * @return string |
|
| 63 | + */ |
|
| 64 | + public function prepare_file_type( $graph ) { |
|
| 65 | + |
|
| 66 | + $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | + $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 68 | + |
|
| 69 | + header( "Content-Type:application/$file_type" ); |
|
| 70 | + header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 71 | + |
|
| 72 | + return $file_type; |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * Handles the actual download. |
|
| 77 | + * |
|
| 78 | + */ |
|
| 79 | + public function download( $graph ) { |
|
| 80 | + global $wpdb; |
|
| 81 | + |
|
| 82 | + $handler = $this->prepare_handler( $graph ); |
|
| 83 | + $stream = $this->prepare_output(); |
|
| 84 | + $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | + $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | + $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | + |
|
| 88 | + if ( 'csv' == $file_type ) { |
|
| 89 | + $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | + } elseif ( 'xml' == $file_type ) { |
|
| 91 | + $this->download_xml( $stats, $stream, $headers ); |
|
| 92 | + } else { |
|
| 93 | + $this->download_json( $stats, $stream, $headers ); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + fclose( $stream ); |
|
| 97 | + exit; |
|
| 98 | + } |
|
| 99 | + |
|
| 100 | + /** |
|
| 101 | + * Downloads graph as csv |
|
| 102 | + * |
|
| 103 | + * @param array $stats The stats being downloaded. |
|
| 104 | + * @param resource $stream The stream to output to. |
|
| 105 | + * @param array $headers The fields to stream. |
|
| 106 | + * @since 1.0.19 |
|
| 107 | + */ |
|
| 108 | + public function download_csv( $stats, $stream, $headers ) { |
|
| 109 | + |
|
| 110 | + // Output the csv column headers. |
|
| 111 | + fputcsv( $stream, $headers ); |
|
| 112 | + |
|
| 113 | + // Loop through |
|
| 114 | + foreach ( $stats as $stat ) { |
|
| 115 | + $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | + $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | + fputcsv( $stream, $row ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Downloads graph as json |
|
| 124 | + * |
|
| 125 | + * @param array $stats The stats being downloaded. |
|
| 126 | + * @param resource $stream The stream to output to. |
|
| 127 | + * @param array $headers The fields to stream. |
|
| 128 | + * @since 1.0.19 |
|
| 129 | + */ |
|
| 130 | + public function download_json( $stats, $stream, $headers ) { |
|
| 131 | + |
|
| 132 | + $prepared = array(); |
|
| 133 | + |
|
| 134 | + // Loop through |
|
| 135 | + foreach ( $stats as $stat ) { |
|
| 136 | + $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 140 | + |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * Downloads graph as xml |
|
| 145 | + * |
|
| 146 | + * @param array $stats The stats being downloaded. |
|
| 147 | + * @param resource $stream The stream to output to. |
|
| 148 | + * @param array $headers The fields to stream. |
|
| 149 | + * @since 1.0.19 |
|
| 150 | + */ |
|
| 151 | + public function download_xml( $stats, $stream, $headers ) { |
|
| 152 | + |
|
| 153 | + $prepared = array(); |
|
| 154 | + |
|
| 155 | + // Loop through |
|
| 156 | + foreach ( $stats as $stat ) { |
|
| 157 | + $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + $xml = new SimpleXMLElement( '<?xml version="1.0"?><data></data>' ); |
|
| 161 | + $this->convert_array_xml( $prepared, $xml ); |
|
| 162 | + |
|
| 163 | + fwrite( $stream, $xml->asXML() ); |
|
| 164 | + |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + /** |
|
| 168 | + * Converts stats array to xml |
|
| 169 | + * |
|
| 170 | + * @access public |
|
| 171 | + * @since 1.0.19 |
|
| 172 | + */ |
|
| 173 | + public function convert_array_xml( $data, $xml ) { |
|
| 174 | + |
|
| 175 | + // Loop through |
|
| 176 | + foreach ( $data as $key => $value ) { |
|
| 177 | + |
|
| 178 | + $key = preg_replace( '/[^A-Za-z0-9_\-]/', '', $key ); |
|
| 179 | + |
|
| 180 | + if ( is_array( $value ) ) { |
|
| 181 | + |
|
| 182 | + if ( is_numeric( $key ) ) { |
|
| 183 | + $key = 'item' . $key; //dealing with <0/>..<n/> issues |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + $subnode = $xml->addChild( $key ); |
|
| 187 | + $this->convert_array_xml( $value, $subnode ); |
|
| 188 | + |
|
| 189 | + } else { |
|
| 190 | + $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 191 | + } |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - } |
|
| 194 | + } |
|
| 195 | 195 | |
| 196 | - /** |
|
| 197 | - * Prepares a single row for download. |
|
| 198 | - * |
|
| 199 | - * @param stdClass|array $row The row to prepare.. |
|
| 200 | - * @param array $fields The fields to stream. |
|
| 201 | - * @since 1.0.19 |
|
| 202 | - * @return array |
|
| 203 | - */ |
|
| 204 | - public function prepare_row( $row, $fields ) { |
|
| 196 | + /** |
|
| 197 | + * Prepares a single row for download. |
|
| 198 | + * |
|
| 199 | + * @param stdClass|array $row The row to prepare.. |
|
| 200 | + * @param array $fields The fields to stream. |
|
| 201 | + * @since 1.0.19 |
|
| 202 | + * @return array |
|
| 203 | + */ |
|
| 204 | + public function prepare_row( $row, $fields ) { |
|
| 205 | 205 | |
| 206 | - $prepared = array(); |
|
| 207 | - $row = (array) $row; |
|
| 206 | + $prepared = array(); |
|
| 207 | + $row = (array) $row; |
|
| 208 | 208 | |
| 209 | - foreach ( $fields as $field ) { |
|
| 209 | + foreach ( $fields as $field ) { |
|
| 210 | 210 | |
| 211 | - if ( $field === 'total' ) { |
|
| 212 | - $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 213 | - continue; |
|
| 214 | - } |
|
| 211 | + if ( $field === 'total' ) { |
|
| 212 | + $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 213 | + continue; |
|
| 214 | + } |
|
| 215 | 215 | |
| 216 | - if ( $field === 'total_raw' ) { |
|
| 217 | - $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 218 | - continue; |
|
| 219 | - } |
|
| 216 | + if ( $field === 'total_raw' ) { |
|
| 217 | + $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 218 | + continue; |
|
| 219 | + } |
|
| 220 | 220 | |
| 221 | - $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 221 | + $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 222 | 222 | |
| 223 | - } |
|
| 223 | + } |
|
| 224 | 224 | |
| 225 | - return $prepared; |
|
| 226 | - } |
|
| 225 | + return $prepared; |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | 229 | } |
@@ -12,38 +12,38 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Payment_Form_Submission_Items { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Submission items. |
|
| 17 | - * @var GetPaid_Form_Item[] |
|
| 18 | - */ |
|
| 19 | - public $items = array(); |
|
| 15 | + /** |
|
| 16 | + * Submission items. |
|
| 17 | + * @var GetPaid_Form_Item[] |
|
| 18 | + */ |
|
| 19 | + public $items = array(); |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | - * Class constructor |
|
| 23 | - * |
|
| 24 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 25 | - */ |
|
| 26 | - public function __construct( $submission ) { |
|
| 27 | - |
|
| 28 | - $data = $submission->get_data(); |
|
| 29 | - $payment_form = $submission->get_payment_form(); |
|
| 30 | - |
|
| 31 | - // Prepare the selected items. |
|
| 32 | - $selected_items = array(); |
|
| 33 | - if ( ! empty( $data['getpaid-items'] ) ) { |
|
| 34 | - $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
| 35 | - } |
|
| 36 | - |
|
| 37 | - // (Maybe) set form items. |
|
| 38 | - if ( isset( $data['getpaid-form-items'] ) ) { |
|
| 39 | - |
|
| 40 | - // Confirm items key. |
|
| 41 | - $form_items = wpinv_clean( $data['getpaid-form-items'] ); |
|
| 42 | - if ( ! isset( $data['getpaid-form-items-key'] ) || $data['getpaid-form-items-key'] !== md5( NONCE_KEY . AUTH_KEY . $form_items ) ) { |
|
| 43 | - throw new Exception( __( 'We could not validate the form items. Please reload the page and try again.', 'invoicing' ) ); |
|
| 44 | - } |
|
| 45 | - |
|
| 46 | - $items = array(); |
|
| 22 | + * Class constructor |
|
| 23 | + * |
|
| 24 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 25 | + */ |
|
| 26 | + public function __construct( $submission ) { |
|
| 27 | + |
|
| 28 | + $data = $submission->get_data(); |
|
| 29 | + $payment_form = $submission->get_payment_form(); |
|
| 30 | + |
|
| 31 | + // Prepare the selected items. |
|
| 32 | + $selected_items = array(); |
|
| 33 | + if ( ! empty( $data['getpaid-items'] ) ) { |
|
| 34 | + $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
| 35 | + } |
|
| 36 | + |
|
| 37 | + // (Maybe) set form items. |
|
| 38 | + if ( isset( $data['getpaid-form-items'] ) ) { |
|
| 39 | + |
|
| 40 | + // Confirm items key. |
|
| 41 | + $form_items = wpinv_clean( $data['getpaid-form-items'] ); |
|
| 42 | + if ( ! isset( $data['getpaid-form-items-key'] ) || $data['getpaid-form-items-key'] !== md5( NONCE_KEY . AUTH_KEY . $form_items ) ) { |
|
| 43 | + throw new Exception( __( 'We could not validate the form items. Please reload the page and try again.', 'invoicing' ) ); |
|
| 44 | + } |
|
| 45 | + |
|
| 46 | + $items = array(); |
|
| 47 | 47 | $item_ids = array(); |
| 48 | 48 | |
| 49 | 49 | foreach ( getpaid_convert_items_to_array( $form_items ) as $item_id => $qty ) { |
@@ -69,61 +69,61 @@ discard block |
||
| 69 | 69 | $items[] = $item; |
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | - } |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | 74 | $payment_form->set_items( $items ); |
| 75 | 75 | |
| 76 | - } |
|
| 77 | - |
|
| 78 | - // Process each individual item. |
|
| 79 | - foreach ( $payment_form->get_items() as $item ) { |
|
| 80 | - $this->process_item( $item, $selected_items, $submission ); |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - } |
|
| 76 | + } |
|
| 84 | 77 | |
| 85 | - /** |
|
| 86 | - * Process a single item. |
|
| 87 | - * |
|
| 88 | - * @param GetPaid_Form_Item $item |
|
| 89 | - * @param array $selected_items |
|
| 90 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 91 | - */ |
|
| 92 | - public function process_item( $item, $selected_items, $submission ) { |
|
| 78 | + // Process each individual item. |
|
| 79 | + foreach ( $payment_form->get_items() as $item ) { |
|
| 80 | + $this->process_item( $item, $selected_items, $submission ); |
|
| 81 | + } |
|
| 93 | 82 | |
| 94 | - // Abort if this is an optional item and it has not been selected. |
|
| 95 | - if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 96 | - return; |
|
| 97 | - } |
|
| 83 | + } |
|
| 98 | 84 | |
| 99 | - // (maybe) let customers change the quantities and prices. |
|
| 100 | - if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 101 | - |
|
| 102 | - // Maybe change the quantities. |
|
| 103 | - if ( $item->allows_quantities() ) { |
|
| 104 | - $item->set_quantity( (float) $selected_items[ $item->get_id() ]['quantity'] ); |
|
| 105 | - } |
|
| 85 | + /** |
|
| 86 | + * Process a single item. |
|
| 87 | + * |
|
| 88 | + * @param GetPaid_Form_Item $item |
|
| 89 | + * @param array $selected_items |
|
| 90 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 91 | + */ |
|
| 92 | + public function process_item( $item, $selected_items, $submission ) { |
|
| 93 | + |
|
| 94 | + // Abort if this is an optional item and it has not been selected. |
|
| 95 | + if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 96 | + return; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + // (maybe) let customers change the quantities and prices. |
|
| 100 | + if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 101 | + |
|
| 102 | + // Maybe change the quantities. |
|
| 103 | + if ( $item->allows_quantities() ) { |
|
| 104 | + $item->set_quantity( (float) $selected_items[ $item->get_id() ]['quantity'] ); |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | - // Maybe change the price. |
|
| 108 | - if ( $item->user_can_set_their_price() ) { |
|
| 109 | - $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
| 107 | + // Maybe change the price. |
|
| 108 | + if ( $item->user_can_set_their_price() ) { |
|
| 109 | + $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
| 110 | 110 | |
| 111 | - if ( $item->get_minimum_price() > $price ) { |
|
| 112 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $item->get_minimum_price() ) ) ); |
|
| 113 | - } |
|
| 111 | + if ( $item->get_minimum_price() > $price ) { |
|
| 112 | + throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $item->get_minimum_price() ) ) ); |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | - $item->set_price( $price ); |
|
| 115 | + $item->set_price( $price ); |
|
| 116 | 116 | |
| 117 | - } |
|
| 118 | - } |
|
| 117 | + } |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - if ( 0 == $item->get_quantity() ) { |
|
| 121 | - return; |
|
| 122 | - } |
|
| 120 | + if ( 0 == $item->get_quantity() ) { |
|
| 121 | + return; |
|
| 122 | + } |
|
| 123 | 123 | |
| 124 | - // Save the item. |
|
| 125 | - $this->items[] = apply_filters( 'getpaid_payment_form_submission_processed_item', $item, $submission ); |
|
| 124 | + // Save the item. |
|
| 125 | + $this->items[] = apply_filters( 'getpaid_payment_form_submission_processed_item', $item, $submission ); |
|
| 126 | 126 | |
| 127 | - } |
|
| 127 | + } |
|
| 128 | 128 | |
| 129 | 129 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | - exit; |
|
| 3 | + exit; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
| 10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * Which data store to load. |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 13 | + * Which data store to load. |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | 17 | protected $data_store_name = 'payment_form'; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * This is the name of this object type. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $object_type = 'payment_form'; |
|
| 20 | + * This is the name of this object type. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $object_type = 'payment_form'; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data = array( |
|
| 33 | - 'status' => 'draft', |
|
| 34 | - 'version' => '', |
|
| 35 | - 'date_created' => null, |
|
| 27 | + * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data = array( |
|
| 33 | + 'status' => 'draft', |
|
| 34 | + 'version' => '', |
|
| 35 | + 'date_created' => null, |
|
| 36 | 36 | 'date_modified' => null, |
| 37 | 37 | 'name' => '', |
| 38 | 38 | 'author' => 1, |
| 39 | 39 | 'elements' => null, |
| 40 | - 'items' => null, |
|
| 41 | - 'earned' => 0, |
|
| 42 | - 'refunded' => 0, |
|
| 43 | - 'cancelled' => 0, |
|
| 44 | - 'failed' => 0, |
|
| 45 | - ); |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Stores meta in cache for future reads. |
|
| 49 | - * |
|
| 50 | - * A group must be set to to enable caching. |
|
| 51 | - * |
|
| 52 | - * @var string |
|
| 53 | - */ |
|
| 54 | - protected $cache_group = 'getpaid_forms'; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | - * |
|
| 59 | - * @var WPInv_Invoice |
|
| 60 | - */ |
|
| 61 | - public $invoice = 0; |
|
| 40 | + 'items' => null, |
|
| 41 | + 'earned' => 0, |
|
| 42 | + 'refunded' => 0, |
|
| 43 | + 'cancelled' => 0, |
|
| 44 | + 'failed' => 0, |
|
| 45 | + ); |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Stores meta in cache for future reads. |
|
| 49 | + * |
|
| 50 | + * A group must be set to to enable caching. |
|
| 51 | + * |
|
| 52 | + * @var string |
|
| 53 | + */ |
|
| 54 | + protected $cache_group = 'getpaid_forms'; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | + * |
|
| 59 | + * @var WPInv_Invoice |
|
| 60 | + */ |
|
| 61 | + public $invoice = 0; |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
| 68 | 68 | protected $post = null; |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | - * |
|
| 73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | - */ |
|
| 75 | - public function __construct( $form = 0 ) { |
|
| 76 | - parent::__construct( $form ); |
|
| 71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | + * |
|
| 73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | + */ |
|
| 75 | + public function __construct( $form = 0 ) { |
|
| 76 | + parent::__construct( $form ); |
|
| 77 | 77 | |
| 78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | - $this->set_id( $form ); |
|
| 80 | - } elseif ( $form instanceof self ) { |
|
| 78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | + $this->set_id( $form ); |
|
| 80 | + } elseif ( $form instanceof self ) { |
|
| 81 | 81 | |
| 82 | - $this->set_id( $form->get_id() ); |
|
| 83 | - $this->invoice = $form->invoice; |
|
| 82 | + $this->set_id( $form->get_id() ); |
|
| 83 | + $this->invoice = $form->invoice; |
|
| 84 | 84 | |
| 85 | - } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | - $this->set_id( $form->ID ); |
|
| 87 | - } else { |
|
| 88 | - $this->set_object_read( true ); |
|
| 89 | - } |
|
| 85 | + } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | + $this->set_id( $form->ID ); |
|
| 87 | + } else { |
|
| 88 | + $this->set_object_read( true ); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | 91 | // Load the datastore. |
| 92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 93 | 93 | |
| 94 | - if ( $this->get_id() > 0 ) { |
|
| 94 | + if ( $this->get_id() > 0 ) { |
|
| 95 | 95 | $this->post = get_post( $this->get_id() ); |
| 96 | - $this->data_store->read( $this ); |
|
| 96 | + $this->data_store->read( $this ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - } |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | 101 | /* |
| 102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,356 +114,356 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | - * Get plugin version when the form was created. |
|
| 118 | - * |
|
| 119 | - * @since 1.0.19 |
|
| 120 | - * @param string $context View or edit context. |
|
| 121 | - * @return string |
|
| 122 | - */ |
|
| 123 | - public function get_version( $context = 'view' ) { |
|
| 124 | - return $this->get_prop( 'version', $context ); |
|
| 117 | + * Get plugin version when the form was created. |
|
| 118 | + * |
|
| 119 | + * @since 1.0.19 |
|
| 120 | + * @param string $context View or edit context. |
|
| 121 | + * @return string |
|
| 122 | + */ |
|
| 123 | + public function get_version( $context = 'view' ) { |
|
| 124 | + return $this->get_prop( 'version', $context ); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * Get date when the form was created. |
|
| 129 | - * |
|
| 130 | - * @since 1.0.19 |
|
| 131 | - * @param string $context View or edit context. |
|
| 132 | - * @return string |
|
| 133 | - */ |
|
| 134 | - public function get_date_created( $context = 'view' ) { |
|
| 135 | - return $this->get_prop( 'date_created', $context ); |
|
| 128 | + * Get date when the form was created. |
|
| 129 | + * |
|
| 130 | + * @since 1.0.19 |
|
| 131 | + * @param string $context View or edit context. |
|
| 132 | + * @return string |
|
| 133 | + */ |
|
| 134 | + public function get_date_created( $context = 'view' ) { |
|
| 135 | + return $this->get_prop( 'date_created', $context ); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
| 139 | - * Get GMT date when the form was created. |
|
| 140 | - * |
|
| 141 | - * @since 1.0.19 |
|
| 142 | - * @param string $context View or edit context. |
|
| 143 | - * @return string |
|
| 144 | - */ |
|
| 145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 139 | + * Get GMT date when the form was created. |
|
| 140 | + * |
|
| 141 | + * @since 1.0.19 |
|
| 142 | + * @param string $context View or edit context. |
|
| 143 | + * @return string |
|
| 144 | + */ |
|
| 145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 146 | 146 | $date = $this->get_date_created( $context ); |
| 147 | 147 | |
| 148 | 148 | if ( $date ) { |
| 149 | 149 | $date = get_gmt_from_date( $date ); |
| 150 | 150 | } |
| 151 | - return $date; |
|
| 151 | + return $date; |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | - * Get date when the form was last modified. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.19 |
|
| 158 | - * @param string $context View or edit context. |
|
| 159 | - * @return string |
|
| 160 | - */ |
|
| 161 | - public function get_date_modified( $context = 'view' ) { |
|
| 162 | - return $this->get_prop( 'date_modified', $context ); |
|
| 155 | + * Get date when the form was last modified. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.19 |
|
| 158 | + * @param string $context View or edit context. |
|
| 159 | + * @return string |
|
| 160 | + */ |
|
| 161 | + public function get_date_modified( $context = 'view' ) { |
|
| 162 | + return $this->get_prop( 'date_modified', $context ); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | - * Get GMT date when the form was last modified. |
|
| 167 | - * |
|
| 168 | - * @since 1.0.19 |
|
| 169 | - * @param string $context View or edit context. |
|
| 170 | - * @return string |
|
| 171 | - */ |
|
| 172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 166 | + * Get GMT date when the form was last modified. |
|
| 167 | + * |
|
| 168 | + * @since 1.0.19 |
|
| 169 | + * @param string $context View or edit context. |
|
| 170 | + * @return string |
|
| 171 | + */ |
|
| 172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
| 173 | 173 | $date = $this->get_date_modified( $context ); |
| 174 | 174 | |
| 175 | 175 | if ( $date ) { |
| 176 | 176 | $date = get_gmt_from_date( $date ); |
| 177 | 177 | } |
| 178 | - return $date; |
|
| 178 | + return $date; |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
| 182 | - * Get the form name. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.19 |
|
| 185 | - * @param string $context View or edit context. |
|
| 186 | - * @return string |
|
| 187 | - */ |
|
| 188 | - public function get_name( $context = 'view' ) { |
|
| 189 | - return $this->get_prop( 'name', $context ); |
|
| 182 | + * Get the form name. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.19 |
|
| 185 | + * @param string $context View or edit context. |
|
| 186 | + * @return string |
|
| 187 | + */ |
|
| 188 | + public function get_name( $context = 'view' ) { |
|
| 189 | + return $this->get_prop( 'name', $context ); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | - * Alias of self::get_name(). |
|
| 194 | - * |
|
| 195 | - * @since 1.0.19 |
|
| 196 | - * @param string $context View or edit context. |
|
| 197 | - * @return string |
|
| 198 | - */ |
|
| 199 | - public function get_title( $context = 'view' ) { |
|
| 200 | - return $this->get_name( $context ); |
|
| 201 | - } |
|
| 193 | + * Alias of self::get_name(). |
|
| 194 | + * |
|
| 195 | + * @since 1.0.19 |
|
| 196 | + * @param string $context View or edit context. |
|
| 197 | + * @return string |
|
| 198 | + */ |
|
| 199 | + public function get_title( $context = 'view' ) { |
|
| 200 | + return $this->get_name( $context ); |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | - * Get the owner of the form. |
|
| 205 | - * |
|
| 206 | - * @since 1.0.19 |
|
| 207 | - * @param string $context View or edit context. |
|
| 208 | - * @return int |
|
| 209 | - */ |
|
| 210 | - public function get_author( $context = 'view' ) { |
|
| 211 | - return (int) $this->get_prop( 'author', $context ); |
|
| 204 | + * Get the owner of the form. |
|
| 205 | + * |
|
| 206 | + * @since 1.0.19 |
|
| 207 | + * @param string $context View or edit context. |
|
| 208 | + * @return int |
|
| 209 | + */ |
|
| 210 | + public function get_author( $context = 'view' ) { |
|
| 211 | + return (int) $this->get_prop( 'author', $context ); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
| 215 | - * Get the elements that make up the form. |
|
| 216 | - * |
|
| 217 | - * @since 1.0.19 |
|
| 218 | - * @param string $context View or edit context. |
|
| 219 | - * @return array |
|
| 220 | - */ |
|
| 221 | - public function get_elements( $context = 'view' ) { |
|
| 222 | - $elements = $this->get_prop( 'elements', $context ); |
|
| 215 | + * Get the elements that make up the form. |
|
| 216 | + * |
|
| 217 | + * @since 1.0.19 |
|
| 218 | + * @param string $context View or edit context. |
|
| 219 | + * @return array |
|
| 220 | + */ |
|
| 221 | + public function get_elements( $context = 'view' ) { |
|
| 222 | + $elements = $this->get_prop( 'elements', $context ); |
|
| 223 | 223 | |
| 224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
| 226 | - } |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | - // Ensure that all required elements exist. |
|
| 229 | - $_elements = array(); |
|
| 230 | - foreach ( $elements as $element ) { |
|
| 228 | + // Ensure that all required elements exist. |
|
| 229 | + $_elements = array(); |
|
| 230 | + foreach ( $elements as $element ) { |
|
| 231 | 231 | |
| 232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 233 | 233 | |
| 234 | - $_elements[] = array( |
|
| 235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | - 'id' => 'gtscicd', |
|
| 237 | - 'name' => 'gtscicd', |
|
| 238 | - 'type' => 'gateway_select', |
|
| 239 | - 'premade' => true, |
|
| 234 | + $_elements[] = array( |
|
| 235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | + 'id' => 'gtscicd', |
|
| 237 | + 'name' => 'gtscicd', |
|
| 238 | + 'type' => 'gateway_select', |
|
| 239 | + 'premade' => true, |
|
| 240 | 240 | |
| 241 | - ); |
|
| 241 | + ); |
|
| 242 | 242 | |
| 243 | - } |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - $_elements[] = $element; |
|
| 245 | + $_elements[] = $element; |
|
| 246 | 246 | |
| 247 | - } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | 249 | return $_elements; |
| 250 | - } |
|
| 251 | - |
|
| 252 | - /** |
|
| 253 | - * Get the items sold via the form. |
|
| 254 | - * |
|
| 255 | - * @since 1.0.19 |
|
| 256 | - * @param string $context View or edit context. |
|
| 257 | - * @param string $return objects or arrays. |
|
| 258 | - * @return GetPaid_Form_Item[] |
|
| 259 | - */ |
|
| 260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | - $items = $this->get_prop( 'items', $context ); |
|
| 262 | - |
|
| 263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + /** |
|
| 253 | + * Get the items sold via the form. |
|
| 254 | + * |
|
| 255 | + * @since 1.0.19 |
|
| 256 | + * @param string $context View or edit context. |
|
| 257 | + * @param string $return objects or arrays. |
|
| 258 | + * @return GetPaid_Form_Item[] |
|
| 259 | + */ |
|
| 260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | + $items = $this->get_prop( 'items', $context ); |
|
| 262 | + |
|
| 263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
| 265 | - } |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - // Convert the items. |
|
| 268 | - $prepared = array(); |
|
| 267 | + // Convert the items. |
|
| 268 | + $prepared = array(); |
|
| 269 | 269 | |
| 270 | - foreach ( $items as $key => $value ) { |
|
| 270 | + foreach ( $items as $key => $value ) { |
|
| 271 | 271 | |
| 272 | - // Form items. |
|
| 273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
| 272 | + // Form items. |
|
| 273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
| 274 | 274 | |
| 275 | - if ( $value->can_purchase() ) { |
|
| 276 | - $prepared[] = $value; |
|
| 277 | - } |
|
| 275 | + if ( $value->can_purchase() ) { |
|
| 276 | + $prepared[] = $value; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - continue; |
|
| 279 | + continue; |
|
| 280 | 280 | |
| 281 | - } |
|
| 281 | + } |
|
| 282 | 282 | |
| 283 | - // $item_id => $quantity (buy buttons) |
|
| 284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | - $item = new GetPaid_Form_Item( $key ); |
|
| 283 | + // $item_id => $quantity (buy buttons) |
|
| 284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | + $item = new GetPaid_Form_Item( $key ); |
|
| 286 | 286 | |
| 287 | - if ( $item->can_purchase() ) { |
|
| 287 | + if ( $item->can_purchase() ) { |
|
| 288 | 288 | |
| 289 | - $value = (float) $value; |
|
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 294 | - } |
|
| 289 | + $value = (float) $value; |
|
| 290 | + $item->set_quantity( $value ); |
|
| 291 | + if ( 0 == $value ) { |
|
| 292 | + $item->set_quantity( 1 ); |
|
| 293 | + $item->set_allow_quantities( true ); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - $prepared[] = $item; |
|
| 297 | - } |
|
| 296 | + $prepared[] = $item; |
|
| 297 | + } |
|
| 298 | 298 | |
| 299 | - continue; |
|
| 300 | - } |
|
| 299 | + continue; |
|
| 300 | + } |
|
| 301 | 301 | |
| 302 | - // Items saved via payment forms editor. |
|
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 302 | + // Items saved via payment forms editor. |
|
| 303 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 304 | 304 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 305 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 306 | 306 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 308 | - continue; |
|
| 309 | - } |
|
| 307 | + if ( ! $item->can_purchase() ) { |
|
| 308 | + continue; |
|
| 309 | + } |
|
| 310 | 310 | |
| 311 | - // Sub-total (Cart items). |
|
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 314 | - } |
|
| 311 | + // Sub-total (Cart items). |
|
| 312 | + if ( isset( $value['subtotal'] ) ) { |
|
| 313 | + $item->set_price( $value['subtotal'] ); |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 318 | - } |
|
| 316 | + if ( isset( $value['quantity'] ) ) { |
|
| 317 | + $item->set_quantity( $value['quantity'] ); |
|
| 318 | + } |
|
| 319 | 319 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | - } |
|
| 320 | + if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 326 | - } |
|
| 324 | + if ( isset( $value['required'] ) ) { |
|
| 325 | + $item->set_is_required( $value['required'] ); |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 330 | - } |
|
| 328 | + if ( isset( $value['description'] ) ) { |
|
| 329 | + $item->set_custom_description( $value['description'] ); |
|
| 330 | + } |
|
| 331 | 331 | |
| 332 | - $prepared[] = $item; |
|
| 333 | - continue; |
|
| 332 | + $prepared[] = $item; |
|
| 333 | + continue; |
|
| 334 | 334 | |
| 335 | - } |
|
| 335 | + } |
|
| 336 | 336 | |
| 337 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 337 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | + $item = new GetPaid_Form_Item( $key ); |
|
| 340 | 340 | |
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 343 | - } |
|
| 341 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | + $item->set_price( $value['price'] ); |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | - if ( $item->can_purchase() ) { |
|
| 346 | - $prepared[] = $item; |
|
| 347 | - } |
|
| 345 | + if ( $item->can_purchase() ) { |
|
| 346 | + $prepared[] = $item; |
|
| 347 | + } |
|
| 348 | 348 | |
| 349 | - continue; |
|
| 350 | - } |
|
| 349 | + continue; |
|
| 350 | + } |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 354 | - return $prepared; |
|
| 355 | - } |
|
| 356 | - |
|
| 357 | - $items = array(); |
|
| 358 | - foreach ( $prepared as $item ) { |
|
| 359 | - $items[] = $item->prepare_data_for_use(); |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - return $items; |
|
| 363 | - } |
|
| 364 | - |
|
| 365 | - /** |
|
| 366 | - * Get a single item belonging to the form. |
|
| 367 | - * |
|
| 368 | - * @since 1.0.19 |
|
| 369 | - * @param int $item_id The item id to return. |
|
| 370 | - * @return GetPaid_Form_Item|bool |
|
| 371 | - */ |
|
| 372 | - public function get_item( $item_id ) { |
|
| 373 | - |
|
| 374 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 375 | - return false; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - foreach ( $this->get_items() as $item ) { |
|
| 379 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 380 | - return $item; |
|
| 381 | - } |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - return false; |
|
| 385 | - |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - /** |
|
| 389 | - * Gets a single element. |
|
| 390 | - * |
|
| 391 | - * @since 1.0.19 |
|
| 392 | - * @param string $element_type The element type to return. |
|
| 393 | - * @return array|bool |
|
| 394 | - */ |
|
| 395 | - public function get_element_type( $element_type ) { |
|
| 396 | - |
|
| 397 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 398 | - return false; |
|
| 399 | - } |
|
| 400 | - |
|
| 401 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 402 | - |
|
| 403 | - if ( $element['type'] == $element_type ) { |
|
| 404 | - return $element; |
|
| 405 | - } |
|
| 353 | + if ( 'objects' == $return && 'view' == $context ) { |
|
| 354 | + return $prepared; |
|
| 355 | + } |
|
| 356 | + |
|
| 357 | + $items = array(); |
|
| 358 | + foreach ( $prepared as $item ) { |
|
| 359 | + $items[] = $item->prepare_data_for_use(); |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + return $items; |
|
| 363 | + } |
|
| 364 | + |
|
| 365 | + /** |
|
| 366 | + * Get a single item belonging to the form. |
|
| 367 | + * |
|
| 368 | + * @since 1.0.19 |
|
| 369 | + * @param int $item_id The item id to return. |
|
| 370 | + * @return GetPaid_Form_Item|bool |
|
| 371 | + */ |
|
| 372 | + public function get_item( $item_id ) { |
|
| 373 | + |
|
| 374 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 375 | + return false; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + foreach ( $this->get_items() as $item ) { |
|
| 379 | + if ( $item->get_id() == (int) $item_id ) { |
|
| 380 | + return $item; |
|
| 381 | + } |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + return false; |
|
| 385 | + |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + /** |
|
| 389 | + * Gets a single element. |
|
| 390 | + * |
|
| 391 | + * @since 1.0.19 |
|
| 392 | + * @param string $element_type The element type to return. |
|
| 393 | + * @return array|bool |
|
| 394 | + */ |
|
| 395 | + public function get_element_type( $element_type ) { |
|
| 396 | + |
|
| 397 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 398 | + return false; |
|
| 399 | + } |
|
| 400 | + |
|
| 401 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 402 | + |
|
| 403 | + if ( $element['type'] == $element_type ) { |
|
| 404 | + return $element; |
|
| 405 | + } |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | - return false; |
|
| 409 | - |
|
| 410 | - } |
|
| 411 | - |
|
| 412 | - /** |
|
| 413 | - * Get the total amount earned via this form. |
|
| 414 | - * |
|
| 415 | - * @since 1.0.19 |
|
| 416 | - * @param string $context View or edit context. |
|
| 417 | - * @return float |
|
| 418 | - */ |
|
| 419 | - public function get_earned( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'earned', $context ); |
|
| 421 | - } |
|
| 422 | - |
|
| 423 | - /** |
|
| 424 | - * Get the total amount refunded via this form. |
|
| 425 | - * |
|
| 426 | - * @since 1.0.19 |
|
| 427 | - * @param string $context View or edit context. |
|
| 428 | - * @return float |
|
| 429 | - */ |
|
| 430 | - public function get_refunded( $context = 'view' ) { |
|
| 431 | - return $this->get_prop( 'refunded', $context ); |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - /** |
|
| 435 | - * Get the total amount cancelled via this form. |
|
| 436 | - * |
|
| 437 | - * @since 1.0.19 |
|
| 438 | - * @param string $context View or edit context. |
|
| 439 | - * @return float |
|
| 440 | - */ |
|
| 441 | - public function get_cancelled( $context = 'view' ) { |
|
| 442 | - return $this->get_prop( 'cancelled', $context ); |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - /** |
|
| 446 | - * Get the total amount failed via this form. |
|
| 447 | - * |
|
| 448 | - * @since 1.0.19 |
|
| 449 | - * @param string $context View or edit context. |
|
| 450 | - * @return float |
|
| 451 | - */ |
|
| 452 | - public function get_failed( $context = 'view' ) { |
|
| 453 | - return $this->get_prop( 'failed', $context ); |
|
| 454 | - } |
|
| 455 | - |
|
| 456 | - /** |
|
| 457 | - * Get the currency. |
|
| 458 | - * |
|
| 459 | - * @since 1.0.19 |
|
| 460 | - * @param string $context View or edit context. |
|
| 461 | - * @return string |
|
| 462 | - */ |
|
| 463 | - public function get_currency() { |
|
| 464 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 466 | - } |
|
| 408 | + return false; |
|
| 409 | + |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + /** |
|
| 413 | + * Get the total amount earned via this form. |
|
| 414 | + * |
|
| 415 | + * @since 1.0.19 |
|
| 416 | + * @param string $context View or edit context. |
|
| 417 | + * @return float |
|
| 418 | + */ |
|
| 419 | + public function get_earned( $context = 'view' ) { |
|
| 420 | + return $this->get_prop( 'earned', $context ); |
|
| 421 | + } |
|
| 422 | + |
|
| 423 | + /** |
|
| 424 | + * Get the total amount refunded via this form. |
|
| 425 | + * |
|
| 426 | + * @since 1.0.19 |
|
| 427 | + * @param string $context View or edit context. |
|
| 428 | + * @return float |
|
| 429 | + */ |
|
| 430 | + public function get_refunded( $context = 'view' ) { |
|
| 431 | + return $this->get_prop( 'refunded', $context ); |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + /** |
|
| 435 | + * Get the total amount cancelled via this form. |
|
| 436 | + * |
|
| 437 | + * @since 1.0.19 |
|
| 438 | + * @param string $context View or edit context. |
|
| 439 | + * @return float |
|
| 440 | + */ |
|
| 441 | + public function get_cancelled( $context = 'view' ) { |
|
| 442 | + return $this->get_prop( 'cancelled', $context ); |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + /** |
|
| 446 | + * Get the total amount failed via this form. |
|
| 447 | + * |
|
| 448 | + * @since 1.0.19 |
|
| 449 | + * @param string $context View or edit context. |
|
| 450 | + * @return float |
|
| 451 | + */ |
|
| 452 | + public function get_failed( $context = 'view' ) { |
|
| 453 | + return $this->get_prop( 'failed', $context ); |
|
| 454 | + } |
|
| 455 | + |
|
| 456 | + /** |
|
| 457 | + * Get the currency. |
|
| 458 | + * |
|
| 459 | + * @since 1.0.19 |
|
| 460 | + * @param string $context View or edit context. |
|
| 461 | + * @return string |
|
| 462 | + */ |
|
| 463 | + public function get_currency() { |
|
| 464 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | 468 | /* |
| 469 | 469 | |-------------------------------------------------------------------------- |
@@ -476,22 +476,22 @@ discard block |
||
| 476 | 476 | */ |
| 477 | 477 | |
| 478 | 478 | /** |
| 479 | - * Set plugin version when the item was created. |
|
| 480 | - * |
|
| 481 | - * @since 1.0.19 |
|
| 482 | - */ |
|
| 483 | - public function set_version( $value ) { |
|
| 484 | - $this->set_prop( 'version', $value ); |
|
| 479 | + * Set plugin version when the item was created. |
|
| 480 | + * |
|
| 481 | + * @since 1.0.19 |
|
| 482 | + */ |
|
| 483 | + public function set_version( $value ) { |
|
| 484 | + $this->set_prop( 'version', $value ); |
|
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | /** |
| 488 | - * Set date when the item was created. |
|
| 489 | - * |
|
| 490 | - * @since 1.0.19 |
|
| 491 | - * @param string $value Value to set. |
|
| 488 | + * Set date when the item was created. |
|
| 489 | + * |
|
| 490 | + * @since 1.0.19 |
|
| 491 | + * @param string $value Value to set. |
|
| 492 | 492 | * @return bool Whether or not the date was set. |
| 493 | - */ |
|
| 494 | - public function set_date_created( $value ) { |
|
| 493 | + */ |
|
| 494 | + public function set_date_created( $value ) { |
|
| 495 | 495 | $date = strtotime( $value ); |
| 496 | 496 | |
| 497 | 497 | if ( $date ) { |
@@ -504,13 +504,13 @@ discard block |
||
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | /** |
| 507 | - * Set date when the item was last modified. |
|
| 508 | - * |
|
| 509 | - * @since 1.0.19 |
|
| 510 | - * @param string $value Value to set. |
|
| 507 | + * Set date when the item was last modified. |
|
| 508 | + * |
|
| 509 | + * @since 1.0.19 |
|
| 510 | + * @param string $value Value to set. |
|
| 511 | 511 | * @return bool Whether or not the date was set. |
| 512 | - */ |
|
| 513 | - public function set_date_modified( $value ) { |
|
| 512 | + */ |
|
| 513 | + public function set_date_modified( $value ) { |
|
| 514 | 514 | $date = strtotime( $value ); |
| 515 | 515 | |
| 516 | 516 | if ( $date ) { |
@@ -523,164 +523,164 @@ discard block |
||
| 523 | 523 | } |
| 524 | 524 | |
| 525 | 525 | /** |
| 526 | - * Set the item name. |
|
| 527 | - * |
|
| 528 | - * @since 1.0.19 |
|
| 529 | - * @param string $value New name. |
|
| 530 | - */ |
|
| 531 | - public function set_name( $value ) { |
|
| 532 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 533 | - } |
|
| 534 | - |
|
| 535 | - /** |
|
| 536 | - * Alias of self::set_name(). |
|
| 537 | - * |
|
| 538 | - * @since 1.0.19 |
|
| 539 | - * @param string $value New name. |
|
| 540 | - */ |
|
| 541 | - public function set_title( $value ) { |
|
| 542 | - $this->set_name( $value ); |
|
| 543 | - } |
|
| 544 | - |
|
| 545 | - /** |
|
| 546 | - * Set the owner of the item. |
|
| 547 | - * |
|
| 548 | - * @since 1.0.19 |
|
| 549 | - * @param int $value New author. |
|
| 550 | - */ |
|
| 551 | - public function set_author( $value ) { |
|
| 552 | - $this->set_prop( 'author', (int) $value ); |
|
| 553 | - } |
|
| 554 | - |
|
| 555 | - /** |
|
| 556 | - * Set the form elements. |
|
| 557 | - * |
|
| 558 | - * @since 1.0.19 |
|
| 559 | - * @sinve 2.3.4 Array values sanitized. |
|
| 560 | - * @param array $value Form elements. |
|
| 561 | - */ |
|
| 562 | - public function set_elements( $value ) { |
|
| 563 | - if ( is_array( $value ) ) { |
|
| 564 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 565 | - } |
|
| 566 | - } |
|
| 567 | - |
|
| 568 | - /** |
|
| 569 | - * Sanitize array values. |
|
| 570 | - * |
|
| 571 | - * @param $value |
|
| 572 | - * |
|
| 573 | - * @return mixed |
|
| 574 | - */ |
|
| 575 | - public function sanitize_array_values( $value ) { |
|
| 576 | - |
|
| 577 | - // sanitize |
|
| 578 | - if ( ! empty( $value ) ) { |
|
| 579 | - |
|
| 580 | - foreach ( $value as $key => $val_arr ) { |
|
| 581 | - |
|
| 582 | - if ( is_array( $val_arr ) ) { |
|
| 583 | - // check if we have sub array items. |
|
| 584 | - $sub_arr = array(); |
|
| 585 | - foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | - if ( is_array( $val2 ) ) { |
|
| 587 | - $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | - unset( $val_arr[ $key ][ $key2 ] ); |
|
| 589 | - } |
|
| 590 | - } |
|
| 591 | - |
|
| 592 | - // we allow some html in description so we sanitize it separately. |
|
| 593 | - $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 594 | - |
|
| 595 | - // sanitize array elements |
|
| 596 | - $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 597 | - |
|
| 598 | - // add back the description if set |
|
| 599 | - if ( isset( $val_arr['description'] ) ) { |
|
| 526 | + * Set the item name. |
|
| 527 | + * |
|
| 528 | + * @since 1.0.19 |
|
| 529 | + * @param string $value New name. |
|
| 530 | + */ |
|
| 531 | + public function set_name( $value ) { |
|
| 532 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 533 | + } |
|
| 534 | + |
|
| 535 | + /** |
|
| 536 | + * Alias of self::set_name(). |
|
| 537 | + * |
|
| 538 | + * @since 1.0.19 |
|
| 539 | + * @param string $value New name. |
|
| 540 | + */ |
|
| 541 | + public function set_title( $value ) { |
|
| 542 | + $this->set_name( $value ); |
|
| 543 | + } |
|
| 544 | + |
|
| 545 | + /** |
|
| 546 | + * Set the owner of the item. |
|
| 547 | + * |
|
| 548 | + * @since 1.0.19 |
|
| 549 | + * @param int $value New author. |
|
| 550 | + */ |
|
| 551 | + public function set_author( $value ) { |
|
| 552 | + $this->set_prop( 'author', (int) $value ); |
|
| 553 | + } |
|
| 554 | + |
|
| 555 | + /** |
|
| 556 | + * Set the form elements. |
|
| 557 | + * |
|
| 558 | + * @since 1.0.19 |
|
| 559 | + * @sinve 2.3.4 Array values sanitized. |
|
| 560 | + * @param array $value Form elements. |
|
| 561 | + */ |
|
| 562 | + public function set_elements( $value ) { |
|
| 563 | + if ( is_array( $value ) ) { |
|
| 564 | + $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | + |
|
| 568 | + /** |
|
| 569 | + * Sanitize array values. |
|
| 570 | + * |
|
| 571 | + * @param $value |
|
| 572 | + * |
|
| 573 | + * @return mixed |
|
| 574 | + */ |
|
| 575 | + public function sanitize_array_values( $value ) { |
|
| 576 | + |
|
| 577 | + // sanitize |
|
| 578 | + if ( ! empty( $value ) ) { |
|
| 579 | + |
|
| 580 | + foreach ( $value as $key => $val_arr ) { |
|
| 581 | + |
|
| 582 | + if ( is_array( $val_arr ) ) { |
|
| 583 | + // check if we have sub array items. |
|
| 584 | + $sub_arr = array(); |
|
| 585 | + foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | + if ( is_array( $val2 ) ) { |
|
| 587 | + $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | + unset( $val_arr[ $key ][ $key2 ] ); |
|
| 589 | + } |
|
| 590 | + } |
|
| 591 | + |
|
| 592 | + // we allow some html in description so we sanitize it separately. |
|
| 593 | + $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 594 | + |
|
| 595 | + // sanitize array elements |
|
| 596 | + $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 597 | + |
|
| 598 | + // add back the description if set |
|
| 599 | + if ( isset( $val_arr['description'] ) ) { |
|
| 600 | 600 | $value[ $key ]['description'] = $help_text;} |
| 601 | 601 | |
| 602 | - // add back sub array items after its been sanitized. |
|
| 603 | - if ( ! empty( $sub_arr ) ) { |
|
| 604 | - $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 605 | - } |
|
| 606 | - } |
|
| 602 | + // add back sub array items after its been sanitized. |
|
| 603 | + if ( ! empty( $sub_arr ) ) { |
|
| 604 | + $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 605 | + } |
|
| 606 | + } |
|
| 607 | 607 | } |
| 608 | 608 | } |
| 609 | 609 | |
| 610 | - return $value; |
|
| 611 | - } |
|
| 612 | - |
|
| 613 | - /** |
|
| 614 | - * Set the form items. |
|
| 615 | - * |
|
| 616 | - * @since 1.0.19 |
|
| 617 | - * @param array $value Form elements. |
|
| 618 | - */ |
|
| 619 | - public function set_items( $value ) { |
|
| 620 | - if ( is_array( $value ) ) { |
|
| 621 | - $this->set_prop( 'items', $value ); |
|
| 622 | - } |
|
| 623 | - } |
|
| 624 | - |
|
| 625 | - /** |
|
| 626 | - * Set the total amount earned via this form. |
|
| 627 | - * |
|
| 628 | - * @since 1.0.19 |
|
| 629 | - * @param float $value Amount earned. |
|
| 630 | - */ |
|
| 631 | - public function set_earned( $value ) { |
|
| 632 | - $value = max( (float) $value, 0 ); |
|
| 633 | - $this->set_prop( 'earned', $value ); |
|
| 634 | - } |
|
| 635 | - |
|
| 636 | - /** |
|
| 637 | - * Set the total amount refunded via this form. |
|
| 638 | - * |
|
| 639 | - * @since 1.0.19 |
|
| 640 | - * @param float $value Amount refunded. |
|
| 641 | - */ |
|
| 642 | - public function set_refunded( $value ) { |
|
| 643 | - $value = max( (float) $value, 0 ); |
|
| 644 | - $this->set_prop( 'refunded', $value ); |
|
| 645 | - } |
|
| 646 | - |
|
| 647 | - /** |
|
| 648 | - * Set the total amount cancelled via this form. |
|
| 649 | - * |
|
| 650 | - * @since 1.0.19 |
|
| 651 | - * @param float $value Amount cancelled. |
|
| 652 | - */ |
|
| 653 | - public function set_cancelled( $value ) { |
|
| 654 | - $value = max( (float) $value, 0 ); |
|
| 655 | - $this->set_prop( 'cancelled', $value ); |
|
| 656 | - } |
|
| 657 | - |
|
| 658 | - /** |
|
| 659 | - * Set the total amount failed via this form. |
|
| 660 | - * |
|
| 661 | - * @since 1.0.19 |
|
| 662 | - * @param float $value Amount cancelled. |
|
| 663 | - */ |
|
| 664 | - public function set_failed( $value ) { |
|
| 665 | - $value = max( (float) $value, 0 ); |
|
| 666 | - $this->set_prop( 'failed', $value ); |
|
| 667 | - } |
|
| 610 | + return $value; |
|
| 611 | + } |
|
| 612 | + |
|
| 613 | + /** |
|
| 614 | + * Set the form items. |
|
| 615 | + * |
|
| 616 | + * @since 1.0.19 |
|
| 617 | + * @param array $value Form elements. |
|
| 618 | + */ |
|
| 619 | + public function set_items( $value ) { |
|
| 620 | + if ( is_array( $value ) ) { |
|
| 621 | + $this->set_prop( 'items', $value ); |
|
| 622 | + } |
|
| 623 | + } |
|
| 624 | + |
|
| 625 | + /** |
|
| 626 | + * Set the total amount earned via this form. |
|
| 627 | + * |
|
| 628 | + * @since 1.0.19 |
|
| 629 | + * @param float $value Amount earned. |
|
| 630 | + */ |
|
| 631 | + public function set_earned( $value ) { |
|
| 632 | + $value = max( (float) $value, 0 ); |
|
| 633 | + $this->set_prop( 'earned', $value ); |
|
| 634 | + } |
|
| 635 | + |
|
| 636 | + /** |
|
| 637 | + * Set the total amount refunded via this form. |
|
| 638 | + * |
|
| 639 | + * @since 1.0.19 |
|
| 640 | + * @param float $value Amount refunded. |
|
| 641 | + */ |
|
| 642 | + public function set_refunded( $value ) { |
|
| 643 | + $value = max( (float) $value, 0 ); |
|
| 644 | + $this->set_prop( 'refunded', $value ); |
|
| 645 | + } |
|
| 646 | + |
|
| 647 | + /** |
|
| 648 | + * Set the total amount cancelled via this form. |
|
| 649 | + * |
|
| 650 | + * @since 1.0.19 |
|
| 651 | + * @param float $value Amount cancelled. |
|
| 652 | + */ |
|
| 653 | + public function set_cancelled( $value ) { |
|
| 654 | + $value = max( (float) $value, 0 ); |
|
| 655 | + $this->set_prop( 'cancelled', $value ); |
|
| 656 | + } |
|
| 657 | + |
|
| 658 | + /** |
|
| 659 | + * Set the total amount failed via this form. |
|
| 660 | + * |
|
| 661 | + * @since 1.0.19 |
|
| 662 | + * @param float $value Amount cancelled. |
|
| 663 | + */ |
|
| 664 | + public function set_failed( $value ) { |
|
| 665 | + $value = max( (float) $value, 0 ); |
|
| 666 | + $this->set_prop( 'failed', $value ); |
|
| 667 | + } |
|
| 668 | 668 | |
| 669 | 669 | /** |
| 670 | 670 | * Create an item. For backwards compatibilty. |
| 671 | 671 | * |
| 672 | 672 | * @deprecated |
| 673 | - * @return int item id |
|
| 673 | + * @return int item id |
|
| 674 | 674 | */ |
| 675 | 675 | public function create( $data = array() ) { |
| 676 | 676 | |
| 677 | - // Set the properties. |
|
| 678 | - if ( is_array( $data ) ) { |
|
| 679 | - $this->set_props( $data ); |
|
| 680 | - } |
|
| 677 | + // Set the properties. |
|
| 678 | + if ( is_array( $data ) ) { |
|
| 679 | + $this->set_props( $data ); |
|
| 680 | + } |
|
| 681 | 681 | |
| 682 | - // Save the item. |
|
| 683 | - return $this->save(); |
|
| 682 | + // Save the item. |
|
| 683 | + return $this->save(); |
|
| 684 | 684 | |
| 685 | 685 | } |
| 686 | 686 | |
@@ -688,7 +688,7 @@ discard block |
||
| 688 | 688 | * Updates an item. For backwards compatibilty. |
| 689 | 689 | * |
| 690 | 690 | * @deprecated |
| 691 | - * @return int item id |
|
| 691 | + * @return int item id |
|
| 692 | 692 | */ |
| 693 | 693 | public function update( $data = array() ) { |
| 694 | 694 | return $this->create( $data ); |
@@ -704,22 +704,22 @@ discard block |
||
| 704 | 704 | */ |
| 705 | 705 | |
| 706 | 706 | /** |
| 707 | - * Checks whether this is the default payment form. |
|
| 708 | - * |
|
| 709 | - * @since 1.0.19 |
|
| 710 | - * @return bool |
|
| 711 | - */ |
|
| 707 | + * Checks whether this is the default payment form. |
|
| 708 | + * |
|
| 709 | + * @since 1.0.19 |
|
| 710 | + * @return bool |
|
| 711 | + */ |
|
| 712 | 712 | public function is_default() { |
| 713 | 713 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 714 | 714 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
| 715 | - } |
|
| 715 | + } |
|
| 716 | 716 | |
| 717 | 717 | /** |
| 718 | - * Checks whether the form is active. |
|
| 719 | - * |
|
| 720 | - * @since 1.0.19 |
|
| 721 | - * @return bool |
|
| 722 | - */ |
|
| 718 | + * Checks whether the form is active. |
|
| 719 | + * |
|
| 720 | + * @since 1.0.19 |
|
| 721 | + * @return bool |
|
| 722 | + */ |
|
| 723 | 723 | public function is_active() { |
| 724 | 724 | $is_active = 0 !== (int) $this->get_id(); |
| 725 | 725 | |
@@ -728,81 +728,81 @@ discard block |
||
| 728 | 728 | } |
| 729 | 729 | |
| 730 | 730 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
| 731 | - } |
|
| 732 | - |
|
| 733 | - /** |
|
| 734 | - * Checks whether the form has a given item. |
|
| 735 | - * |
|
| 736 | - * @since 1.0.19 |
|
| 737 | - * @return bool |
|
| 738 | - */ |
|
| 731 | + } |
|
| 732 | + |
|
| 733 | + /** |
|
| 734 | + * Checks whether the form has a given item. |
|
| 735 | + * |
|
| 736 | + * @since 1.0.19 |
|
| 737 | + * @return bool |
|
| 738 | + */ |
|
| 739 | 739 | public function has_item( $item_id ) { |
| 740 | 740 | return false !== $this->get_item( $item_id ); |
| 741 | - } |
|
| 742 | - |
|
| 743 | - /** |
|
| 744 | - * Checks whether the form has a given element. |
|
| 745 | - * |
|
| 746 | - * @since 1.0.19 |
|
| 747 | - * @return bool |
|
| 748 | - */ |
|
| 741 | + } |
|
| 742 | + |
|
| 743 | + /** |
|
| 744 | + * Checks whether the form has a given element. |
|
| 745 | + * |
|
| 746 | + * @since 1.0.19 |
|
| 747 | + * @return bool |
|
| 748 | + */ |
|
| 749 | 749 | public function has_element_type( $element_type ) { |
| 750 | 750 | return false !== $this->get_element_type( $element_type ); |
| 751 | - } |
|
| 752 | - |
|
| 753 | - /** |
|
| 754 | - * Checks whether this form is recurring or not. |
|
| 755 | - * |
|
| 756 | - * @since 1.0.19 |
|
| 757 | - * @return bool |
|
| 758 | - */ |
|
| 751 | + } |
|
| 752 | + |
|
| 753 | + /** |
|
| 754 | + * Checks whether this form is recurring or not. |
|
| 755 | + * |
|
| 756 | + * @since 1.0.19 |
|
| 757 | + * @return bool |
|
| 758 | + */ |
|
| 759 | 759 | public function is_recurring() { |
| 760 | 760 | |
| 761 | - if ( ! empty( $this->invoice ) ) { |
|
| 762 | - return $this->invoice->is_recurring(); |
|
| 763 | - } |
|
| 761 | + if ( ! empty( $this->invoice ) ) { |
|
| 762 | + return $this->invoice->is_recurring(); |
|
| 763 | + } |
|
| 764 | 764 | |
| 765 | - foreach ( $this->get_items() as $item ) { |
|
| 765 | + foreach ( $this->get_items() as $item ) { |
|
| 766 | 766 | |
| 767 | - if ( $item->is_recurring() ) { |
|
| 768 | - return true; |
|
| 769 | - } |
|
| 767 | + if ( $item->is_recurring() ) { |
|
| 768 | + return true; |
|
| 769 | + } |
|
| 770 | 770 | } |
| 771 | 771 | |
| 772 | 772 | return false; |
| 773 | - } |
|
| 773 | + } |
|
| 774 | 774 | |
| 775 | - /** |
|
| 776 | - * Retrieves the form's html. |
|
| 777 | - * |
|
| 778 | - * @since 1.0.19 |
|
| 779 | - */ |
|
| 775 | + /** |
|
| 776 | + * Retrieves the form's html. |
|
| 777 | + * |
|
| 778 | + * @since 1.0.19 |
|
| 779 | + */ |
|
| 780 | 780 | public function get_html( $extra_markup = '' ) { |
| 781 | 781 | |
| 782 | - // Return the HTML. |
|
| 783 | - return wpinv_get_template_html( |
|
| 784 | - 'payment-forms/form.php', |
|
| 785 | - array( |
|
| 786 | - 'form' => $this, |
|
| 787 | - 'extra_markup' => $extra_markup, |
|
| 788 | - ) |
|
| 789 | - ); |
|
| 790 | - |
|
| 791 | - } |
|
| 792 | - |
|
| 793 | - /** |
|
| 794 | - * Displays the payment form. |
|
| 795 | - * |
|
| 796 | - * @since 1.0.19 |
|
| 797 | - */ |
|
| 782 | + // Return the HTML. |
|
| 783 | + return wpinv_get_template_html( |
|
| 784 | + 'payment-forms/form.php', |
|
| 785 | + array( |
|
| 786 | + 'form' => $this, |
|
| 787 | + 'extra_markup' => $extra_markup, |
|
| 788 | + ) |
|
| 789 | + ); |
|
| 790 | + |
|
| 791 | + } |
|
| 792 | + |
|
| 793 | + /** |
|
| 794 | + * Displays the payment form. |
|
| 795 | + * |
|
| 796 | + * @since 1.0.19 |
|
| 797 | + */ |
|
| 798 | 798 | public function display( $extra_markup = '' ) { |
| 799 | - wpinv_get_template( |
|
| 800 | - 'payment-forms/form.php', |
|
| 801 | - array( |
|
| 802 | - 'form' => $this, |
|
| 803 | - 'extra_markup' => $extra_markup, |
|
| 804 | - ) |
|
| 805 | - ); |
|
| 799 | + wpinv_get_template( |
|
| 800 | + 'payment-forms/form.php', |
|
| 801 | + array( |
|
| 802 | + 'form' => $this, |
|
| 803 | + 'extra_markup' => $extra_markup, |
|
| 804 | + ) |
|
| 805 | + ); |
|
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | } |
@@ -42,92 +42,92 @@ discard block |
||
| 42 | 42 | <tr class="wpinv-item wpinv-item-<?php echo esc_attr( $invoice->get_status() ); ?>"> |
| 43 | 43 | <?php |
| 44 | 44 | |
| 45 | - foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : |
|
| 45 | + foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : |
|
| 46 | 46 | |
| 47 | - $column_id = sanitize_html_class( $column_id ); |
|
| 48 | - $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
| 47 | + $column_id = sanitize_html_class( $column_id ); |
|
| 48 | + $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
| 49 | 49 | |
| 50 | - echo "<td class='" . esc_attr( $column_id . ' ' . $class ) . "'>"; |
|
| 51 | - switch ( $column_id ) { |
|
| 50 | + echo "<td class='" . esc_attr( $column_id . ' ' . $class ) . "'>"; |
|
| 51 | + switch ( $column_id ) { |
|
| 52 | 52 | |
| 53 | - case 'invoice-number': |
|
| 54 | - echo wp_kses_post( wpinv_invoice_link( $invoice ) ); |
|
| 55 | - break; |
|
| 53 | + case 'invoice-number': |
|
| 54 | + echo wp_kses_post( wpinv_invoice_link( $invoice ) ); |
|
| 55 | + break; |
|
| 56 | 56 | |
| 57 | - case 'created-date': |
|
| 58 | - echo esc_html( getpaid_format_date_value( $invoice->get_date_created() ) ); |
|
| 59 | - break; |
|
| 57 | + case 'created-date': |
|
| 58 | + echo esc_html( getpaid_format_date_value( $invoice->get_date_created() ) ); |
|
| 59 | + break; |
|
| 60 | 60 | |
| 61 | - case 'payment-date': |
|
| 62 | - if ( $invoice->needs_payment() ) { |
|
| 63 | - echo '—'; |
|
| 64 | - } else { |
|
| 65 | - echo esc_html( getpaid_format_date_value( $invoice->get_date_completed() ) ); |
|
| 66 | - } |
|
| 61 | + case 'payment-date': |
|
| 62 | + if ( $invoice->needs_payment() ) { |
|
| 63 | + echo '—'; |
|
| 64 | + } else { |
|
| 65 | + echo esc_html( getpaid_format_date_value( $invoice->get_date_completed() ) ); |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - break; |
|
| 68 | + break; |
|
| 69 | 69 | |
| 70 | - case 'invoice-status': |
|
| 71 | - echo wp_kses_post( $invoice->get_status_label_html() ); |
|
| 70 | + case 'invoice-status': |
|
| 71 | + echo wp_kses_post( $invoice->get_status_label_html() ); |
|
| 72 | 72 | |
| 73 | - break; |
|
| 73 | + break; |
|
| 74 | 74 | |
| 75 | - case 'invoice-total': |
|
| 76 | - wpinv_the_price( $invoice->get_total(), $invoice->get_currency() ); |
|
| 75 | + case 'invoice-total': |
|
| 76 | + wpinv_the_price( $invoice->get_total(), $invoice->get_currency() ); |
|
| 77 | 77 | |
| 78 | - break; |
|
| 78 | + break; |
|
| 79 | 79 | |
| 80 | - case 'invoice-actions': |
|
| 81 | - $actions = array( |
|
| 80 | + case 'invoice-actions': |
|
| 81 | + $actions = array( |
|
| 82 | 82 | |
| 83 | - 'pay' => array( |
|
| 84 | - 'url' => $invoice->get_checkout_payment_url(), |
|
| 85 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
| 86 | - 'class' => 'btn-success', |
|
| 87 | - ), |
|
| 83 | + 'pay' => array( |
|
| 84 | + 'url' => $invoice->get_checkout_payment_url(), |
|
| 85 | + 'name' => __( 'Pay Now', 'invoicing' ), |
|
| 86 | + 'class' => 'btn-success', |
|
| 87 | + ), |
|
| 88 | 88 | |
| 89 | - 'print' => array( |
|
| 90 | - 'url' => $invoice->get_view_url(), |
|
| 91 | - 'name' => __( 'View', 'invoicing' ), |
|
| 92 | - 'class' => 'btn-secondary', |
|
| 93 | - 'attrs' => 'target="_blank"', |
|
| 94 | - ), |
|
| 95 | - ); |
|
| 89 | + 'print' => array( |
|
| 90 | + 'url' => $invoice->get_view_url(), |
|
| 91 | + 'name' => __( 'View', 'invoicing' ), |
|
| 92 | + 'class' => 'btn-secondary', |
|
| 93 | + 'attrs' => 'target="_blank"', |
|
| 94 | + ), |
|
| 95 | + ); |
|
| 96 | 96 | |
| 97 | - if ( ! $invoice->needs_payment() ) { |
|
| 98 | - unset( $actions['pay'] ); |
|
| 99 | - } |
|
| 97 | + if ( ! $invoice->needs_payment() ) { |
|
| 98 | + unset( $actions['pay'] ); |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - if ( $invoice->needs_payment() ) { |
|
| 102 | - $actions['delete'] = array( |
|
| 103 | - 'url' => getpaid_get_authenticated_action_url( 'delete_invoice', add_query_arg( 'invoice_id', $invoice->get_id() ) ), |
|
| 104 | - 'name' => __( 'Delete', 'invoicing' ), |
|
| 105 | - 'class' => 'btn-danger', |
|
| 106 | - ); |
|
| 107 | - } |
|
| 101 | + if ( $invoice->needs_payment() ) { |
|
| 102 | + $actions['delete'] = array( |
|
| 103 | + 'url' => getpaid_get_authenticated_action_url( 'delete_invoice', add_query_arg( 'invoice_id', $invoice->get_id() ) ), |
|
| 104 | + 'name' => __( 'Delete', 'invoicing' ), |
|
| 105 | + 'class' => 'btn-danger', |
|
| 106 | + ); |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | - $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice, $post_type ); |
|
| 109 | + $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice, $post_type ); |
|
| 110 | 110 | |
| 111 | - foreach ( $actions as $key => $action ) { |
|
| 112 | - $class = ! empty( $action['class'] ) ? sanitize_html_class( $action['class'] ) : ''; |
|
| 113 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . esc_attr( $class . ' ' . sanitize_html_class( $key ) ) . '" ' . ( ! empty( $action['attrs'] ) ? esc_html( $action['attrs'] ) : '' ) . '>' . esc_attr( $action['name'] ) . '</a>'; |
|
| 114 | - } |
|
| 111 | + foreach ( $actions as $key => $action ) { |
|
| 112 | + $class = ! empty( $action['class'] ) ? sanitize_html_class( $action['class'] ) : ''; |
|
| 113 | + echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . esc_attr( $class . ' ' . sanitize_html_class( $key ) ) . '" ' . ( ! empty( $action['attrs'] ) ? esc_html( $action['attrs'] ) : '' ) . '>' . esc_attr( $action['name'] ) . '</a>'; |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - break; |
|
| 116 | + break; |
|
| 117 | 117 | |
| 118 | - default: |
|
| 119 | - do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
| 120 | - break; |
|
| 118 | + default: |
|
| 119 | + do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
| 120 | + break; |
|
| 121 | 121 | |
| 122 | 122 | |
| 123 | - } |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | - do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
| 125 | + do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
| 126 | 126 | |
| 127 | - echo '</td>'; |
|
| 127 | + echo '</td>'; |
|
| 128 | 128 | |
| 129 | - endforeach; |
|
| 130 | - ?> |
|
| 129 | + endforeach; |
|
| 130 | + ?> |
|
| 131 | 131 | </tr> |
| 132 | 132 | |
| 133 | 133 | <?php endforeach; ?> |
@@ -141,18 +141,18 @@ discard block |
||
| 141 | 141 | <?php if ( 1 < $invoices->max_num_pages ) : ?> |
| 142 | 142 | <div class="invoicing-Pagination"> |
| 143 | 143 | <?php |
| 144 | - $big = 999999; |
|
| 145 | - |
|
| 146 | - echo wp_kses_post( |
|
| 147 | - paginate_links( |
|
| 148 | - array( |
|
| 149 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 150 | - 'format' => '?paged=%#%', |
|
| 151 | - 'total' => $invoices->max_num_pages, |
|
| 152 | - ) |
|
| 153 | - ) |
|
| 144 | + $big = 999999; |
|
| 145 | + |
|
| 146 | + echo wp_kses_post( |
|
| 147 | + paginate_links( |
|
| 148 | + array( |
|
| 149 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 150 | + 'format' => '?paged=%#%', |
|
| 151 | + 'total' => $invoices->max_num_pages, |
|
| 152 | + ) |
|
| 153 | + ) |
|
| 154 | 154 | ); |
| 155 | - ?> |
|
| 155 | + ?> |
|
| 156 | 156 | </div> |
| 157 | 157 | <?php endif; ?> |
| 158 | 158 | |
@@ -10,232 +10,232 @@ discard block |
||
| 10 | 10 | |
| 11 | 11 | if (!class_exists('RapidAddon')) { |
| 12 | 12 | |
| 13 | - class RapidAddon { |
|
| 14 | - |
|
| 15 | - public $name; |
|
| 16 | - public $slug; |
|
| 17 | - public $fields; |
|
| 18 | - public $options = array(); |
|
| 19 | - public $accordions = array(); |
|
| 20 | - public $image_sections = array(); |
|
| 21 | - public $import_function; |
|
| 22 | - public $post_saved_function; |
|
| 23 | - public $notice_text; |
|
| 24 | - public $logger = null; |
|
| 25 | - public $when_to_run = false; |
|
| 26 | - public $image_options = array( |
|
| 27 | - 'download_images' => 'yes', |
|
| 28 | - 'download_featured_delim' => ',', |
|
| 29 | - 'download_featured_image' => '', |
|
| 30 | - 'gallery_featured_image' => '', |
|
| 31 | - 'gallery_featured_delim' => ',', |
|
| 32 | - 'featured_image' => '', |
|
| 33 | - 'featured_delim' => ',', |
|
| 34 | - 'search_existing_images' => 1, |
|
| 35 | - 'is_featured' => 0, |
|
| 36 | - 'create_draft' => 'no', |
|
| 37 | - 'set_image_meta_title' => 0, |
|
| 38 | - 'image_meta_title_delim' => ',', |
|
| 39 | - 'image_meta_title' => '', |
|
| 40 | - 'set_image_meta_caption' => 0, |
|
| 41 | - 'image_meta_caption_delim' => ',', |
|
| 42 | - 'image_meta_caption' => '', |
|
| 43 | - 'set_image_meta_alt' => 0, |
|
| 44 | - 'image_meta_alt_delim' => ',', |
|
| 45 | - 'image_meta_alt' => '', |
|
| 46 | - 'set_image_meta_description' => 0, |
|
| 47 | - 'image_meta_description_delim' => ',', |
|
| 48 | - 'image_meta_description_delim_logic' => 'separate', |
|
| 49 | - 'image_meta_description' => '', |
|
| 50 | - 'auto_rename_images' => 0, |
|
| 51 | - 'auto_rename_images_suffix' => '', |
|
| 52 | - 'auto_set_extension' => 0, |
|
| 53 | - 'new_extension' => '', |
|
| 54 | - 'do_not_remove_images' => 1, |
|
| 13 | + class RapidAddon { |
|
| 14 | + |
|
| 15 | + public $name; |
|
| 16 | + public $slug; |
|
| 17 | + public $fields; |
|
| 18 | + public $options = array(); |
|
| 19 | + public $accordions = array(); |
|
| 20 | + public $image_sections = array(); |
|
| 21 | + public $import_function; |
|
| 22 | + public $post_saved_function; |
|
| 23 | + public $notice_text; |
|
| 24 | + public $logger = null; |
|
| 25 | + public $when_to_run = false; |
|
| 26 | + public $image_options = array( |
|
| 27 | + 'download_images' => 'yes', |
|
| 28 | + 'download_featured_delim' => ',', |
|
| 29 | + 'download_featured_image' => '', |
|
| 30 | + 'gallery_featured_image' => '', |
|
| 31 | + 'gallery_featured_delim' => ',', |
|
| 32 | + 'featured_image' => '', |
|
| 33 | + 'featured_delim' => ',', |
|
| 34 | + 'search_existing_images' => 1, |
|
| 35 | + 'is_featured' => 0, |
|
| 36 | + 'create_draft' => 'no', |
|
| 37 | + 'set_image_meta_title' => 0, |
|
| 38 | + 'image_meta_title_delim' => ',', |
|
| 39 | + 'image_meta_title' => '', |
|
| 40 | + 'set_image_meta_caption' => 0, |
|
| 41 | + 'image_meta_caption_delim' => ',', |
|
| 42 | + 'image_meta_caption' => '', |
|
| 43 | + 'set_image_meta_alt' => 0, |
|
| 44 | + 'image_meta_alt_delim' => ',', |
|
| 45 | + 'image_meta_alt' => '', |
|
| 46 | + 'set_image_meta_description' => 0, |
|
| 47 | + 'image_meta_description_delim' => ',', |
|
| 48 | + 'image_meta_description_delim_logic' => 'separate', |
|
| 49 | + 'image_meta_description' => '', |
|
| 50 | + 'auto_rename_images' => 0, |
|
| 51 | + 'auto_rename_images_suffix' => '', |
|
| 52 | + 'auto_set_extension' => 0, |
|
| 53 | + 'new_extension' => '', |
|
| 54 | + 'do_not_remove_images' => 1, |
|
| 55 | 55 | 'search_existing_images_logic' => 'by_url' |
| 56 | - ); |
|
| 56 | + ); |
|
| 57 | 57 | |
| 58 | - protected $isWizard = true; |
|
| 58 | + protected $isWizard = true; |
|
| 59 | 59 | |
| 60 | - function __construct($name, $slug) { |
|
| 61 | - $this->name = $name; |
|
| 62 | - $this->slug = $slug; |
|
| 63 | - if (!empty($_GET['id'])){ |
|
| 64 | - $this->isWizard = false; |
|
| 65 | - } |
|
| 60 | + function __construct($name, $slug) { |
|
| 61 | + $this->name = $name; |
|
| 62 | + $this->slug = $slug; |
|
| 63 | + if (!empty($_GET['id'])){ |
|
| 64 | + $this->isWizard = false; |
|
| 65 | + } |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - function set_import_function($name) { |
|
| 69 | - $this->import_function = $name; |
|
| 70 | - } |
|
| 68 | + function set_import_function($name) { |
|
| 69 | + $this->import_function = $name; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - function set_post_saved_function($name) { |
|
| 73 | - $this->post_saved_function = $name; |
|
| 74 | - } |
|
| 72 | + function set_post_saved_function($name) { |
|
| 73 | + $this->post_saved_function = $name; |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - function is_active_addon($post_type = null) { |
|
| 76 | + function is_active_addon($post_type = null) { |
|
| 77 | 77 | |
| 78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 79 | - return false; |
|
| 80 | - } |
|
| 78 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 79 | + return false; |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - $addon_active = false; |
|
| 82 | + $addon_active = false; |
|
| 83 | 83 | |
| 84 | - if ($post_type !== null) { |
|
| 85 | - if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
| 86 | - $addon_active = true; |
|
| 87 | - } |
|
| 88 | - } |
|
| 84 | + if ($post_type !== null) { |
|
| 85 | + if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
| 86 | + $addon_active = true; |
|
| 87 | + } |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - if ($addon_active){ |
|
| 90 | + if ($addon_active){ |
|
| 91 | 91 | |
| 92 | - $current_theme = wp_get_theme(); |
|
| 92 | + $current_theme = wp_get_theme(); |
|
| 93 | 93 | |
| 94 | - $parent_theme = $current_theme->parent(); |
|
| 94 | + $parent_theme = $current_theme->parent(); |
|
| 95 | 95 | |
| 96 | - $theme_name = $current_theme->get('Name'); |
|
| 96 | + $theme_name = $current_theme->get('Name'); |
|
| 97 | 97 | |
| 98 | - $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 98 | + $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 99 | 99 | |
| 100 | - if ( ! $addon_active and $parent_theme ){ |
|
| 101 | - $parent_theme_name = $parent_theme->get('Name'); |
|
| 102 | - $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 100 | + if ( ! $addon_active and $parent_theme ){ |
|
| 101 | + $parent_theme_name = $parent_theme->get('Name'); |
|
| 102 | + $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 103 | 103 | |
| 104 | - } |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 106 | + if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 107 | 107 | |
| 108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 108 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 109 | 109 | |
| 110 | - foreach ($this->active_plugins as $plugin) { |
|
| 111 | - if ( ! is_plugin_active($plugin) ) { |
|
| 112 | - $addon_active = false; |
|
| 113 | - break; |
|
| 114 | - } |
|
| 115 | - } |
|
| 116 | - } |
|
| 110 | + foreach ($this->active_plugins as $plugin) { |
|
| 111 | + if ( ! is_plugin_active($plugin) ) { |
|
| 112 | + $addon_active = false; |
|
| 113 | + break; |
|
| 114 | + } |
|
| 115 | + } |
|
| 116 | + } |
|
| 117 | 117 | |
| 118 | - } |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - if ($this->when_to_run == "always") { |
|
| 121 | - $addon_active = true; |
|
| 122 | - } |
|
| 120 | + if ($this->when_to_run == "always") { |
|
| 121 | + $addon_active = true; |
|
| 122 | + } |
|
| 123 | 123 | |
| 124 | - return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
| 125 | - } |
|
| 124 | + return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | - /** |
|
| 128 | - * |
|
| 129 | - * Add-On Initialization |
|
| 130 | - * |
|
| 131 | - * @param array $conditions - list of supported themes and post types |
|
| 132 | - * |
|
| 133 | - */ |
|
| 134 | - function run($conditions = array()) { |
|
| 135 | - |
|
| 136 | - if (empty($conditions)) { |
|
| 137 | - $this->when_to_run = "always"; |
|
| 138 | - } |
|
| 127 | + /** |
|
| 128 | + * |
|
| 129 | + * Add-On Initialization |
|
| 130 | + * |
|
| 131 | + * @param array $conditions - list of supported themes and post types |
|
| 132 | + * |
|
| 133 | + */ |
|
| 134 | + function run($conditions = array()) { |
|
| 135 | + |
|
| 136 | + if (empty($conditions)) { |
|
| 137 | + $this->when_to_run = "always"; |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 140 | + @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | + @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | + @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 143 | 143 | |
| 144 | - add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
| 145 | - add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
| 146 | - add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
| 147 | - add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
| 148 | - add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
| 144 | + add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
| 145 | + add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
| 146 | + add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
| 147 | + add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
| 148 | + add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
| 149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
| 150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
| 151 | 151 | add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
| 152 | 152 | add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
| 153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - function parse($data) { |
|
| 157 | + function parse($data) { |
|
| 158 | 158 | |
| 159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 159 | + if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 160 | 160 | |
| 161 | - $parsedData = $this->helper_parse($data, $this->options_array()); |
|
| 162 | - return $parsedData; |
|
| 161 | + $parsedData = $this->helper_parse($data, $this->options_array()); |
|
| 162 | + return $parsedData; |
|
| 163 | 163 | |
| 164 | - } |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | 166 | |
| 167 | - function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
| 167 | + function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
| 168 | 168 | |
| 169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 170 | 170 | |
| 171 | - $this->fields[$field_slug] = $field; |
|
| 171 | + $this->fields[$field_slug] = $field; |
|
| 172 | 172 | |
| 173 | - if ( ! empty($enum_values) ){ |
|
| 174 | - foreach ($enum_values as $key => $value) { |
|
| 175 | - if (is_array($value)) |
|
| 176 | - { |
|
| 177 | - if ($field['type'] == 'accordion') |
|
| 178 | - { |
|
| 179 | - $this->fields[$value['slug']]['is_sub_field'] = true; |
|
| 180 | - } |
|
| 181 | - else |
|
| 182 | - { |
|
| 183 | - foreach ($value as $n => $param) { |
|
| 184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 185 | - $this->fields[$param['slug']]['is_sub_field'] = true; |
|
| 186 | - } |
|
| 187 | - } |
|
| 188 | - } |
|
| 189 | - } |
|
| 190 | - } |
|
| 191 | - } |
|
| 173 | + if ( ! empty($enum_values) ){ |
|
| 174 | + foreach ($enum_values as $key => $value) { |
|
| 175 | + if (is_array($value)) |
|
| 176 | + { |
|
| 177 | + if ($field['type'] == 'accordion') |
|
| 178 | + { |
|
| 179 | + $this->fields[$value['slug']]['is_sub_field'] = true; |
|
| 180 | + } |
|
| 181 | + else |
|
| 182 | + { |
|
| 183 | + foreach ($value as $n => $param) { |
|
| 184 | + if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 185 | + $this->fields[$param['slug']]['is_sub_field'] = true; |
|
| 186 | + } |
|
| 187 | + } |
|
| 188 | + } |
|
| 189 | + } |
|
| 190 | + } |
|
| 191 | + } |
|
| 192 | 192 | |
| 193 | - return $field; |
|
| 193 | + return $field; |
|
| 194 | 194 | |
| 195 | - } |
|
| 195 | + } |
|
| 196 | 196 | |
| 197 | - function add_acf_field($field){ |
|
| 198 | - $this->fields[$field->post_name] = array( |
|
| 199 | - 'type' => 'acf', |
|
| 200 | - 'field_obj' => $field |
|
| 201 | - ); |
|
| 202 | - } |
|
| 197 | + function add_acf_field($field){ |
|
| 198 | + $this->fields[$field->post_name] = array( |
|
| 199 | + 'type' => 'acf', |
|
| 200 | + 'field_obj' => $field |
|
| 201 | + ); |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - private $acfGroups = array(); |
|
| 204 | + private $acfGroups = array(); |
|
| 205 | 205 | |
| 206 | - function use_acf_group($acf_group){ |
|
| 207 | - $this->add_text( |
|
| 208 | - '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
| 206 | + function use_acf_group($acf_group){ |
|
| 207 | + $this->add_text( |
|
| 208 | + '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
| 209 | 209 | <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
| 210 | 210 | <div class="inside">'); |
| 211 | - $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
| 212 | - if (!empty($acf_fields)){ |
|
| 213 | - foreach ($acf_fields as $field) { |
|
| 214 | - $this->add_acf_field($field); |
|
| 215 | - } |
|
| 216 | - } |
|
| 217 | - $this->add_text('</div></div>'); |
|
| 218 | - $this->acfGroups[] = $acf_group['ID']; |
|
| 219 | - add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - function acf_is_show_group($is_show, $acf_group){ |
|
| 223 | - return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * |
|
| 228 | - * Add an option to WP All Import options list |
|
| 229 | - * |
|
| 230 | - * @param string $slug - option name |
|
| 231 | - * @param string $default_value - default option value |
|
| 232 | - * |
|
| 233 | - */ |
|
| 234 | - function add_option($slug, $default_value = ''){ |
|
| 235 | - $this->options[$slug] = $default_value; |
|
| 236 | - } |
|
| 211 | + $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
| 212 | + if (!empty($acf_fields)){ |
|
| 213 | + foreach ($acf_fields as $field) { |
|
| 214 | + $this->add_acf_field($field); |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | + $this->add_text('</div></div>'); |
|
| 218 | + $this->acfGroups[] = $acf_group['ID']; |
|
| 219 | + add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
| 220 | + } |
|
| 237 | 221 | |
| 238 | - function options_array() { |
|
| 222 | + function acf_is_show_group($is_show, $acf_group){ |
|
| 223 | + return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * |
|
| 228 | + * Add an option to WP All Import options list |
|
| 229 | + * |
|
| 230 | + * @param string $slug - option name |
|
| 231 | + * @param string $default_value - default option value |
|
| 232 | + * |
|
| 233 | + */ |
|
| 234 | + function add_option($slug, $default_value = ''){ |
|
| 235 | + $this->options[$slug] = $default_value; |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + function options_array() { |
|
| 239 | 239 | |
| 240 | 240 | $options_list = array(); |
| 241 | 241 | |
@@ -255,528 +255,528 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( ! empty($this->options) ){ |
|
| 259 | - foreach ($this->options as $slug => $value) { |
|
| 260 | - $options_arr[$slug] = $value; |
|
| 261 | - } |
|
| 262 | - } |
|
| 258 | + if ( ! empty($this->options) ){ |
|
| 259 | + foreach ($this->options as $slug => $value) { |
|
| 260 | + $options_arr[$slug] = $value; |
|
| 261 | + } |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - $options_arr[$this->slug] = $options_list; |
|
| 265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 264 | + $options_arr[$this->slug] = $options_list; |
|
| 265 | + $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 266 | 266 | |
| 267 | - return $options_arr; |
|
| 267 | + return $options_arr; |
|
| 268 | 268 | |
| 269 | - } |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - function wpai_api_options($all_options) { |
|
| 271 | + function wpai_api_options($all_options) { |
|
| 272 | 272 | |
| 273 | - $all_options = $all_options + $this->options_array(); |
|
| 273 | + $all_options = $all_options + $this->options_array(); |
|
| 274 | 274 | |
| 275 | - return $all_options; |
|
| 275 | + return $all_options; |
|
| 276 | 276 | |
| 277 | - } |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | 279 | |
| 280 | - function wpai_api_register($addons) { |
|
| 280 | + function wpai_api_register($addons) { |
|
| 281 | 281 | |
| 282 | - if (empty($addons[$this->slug])) { |
|
| 283 | - $addons[$this->slug] = 1; |
|
| 284 | - } |
|
| 282 | + if (empty($addons[$this->slug])) { |
|
| 283 | + $addons[$this->slug] = 1; |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - return $addons; |
|
| 286 | + return $addons; |
|
| 287 | 287 | |
| 288 | - } |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | 290 | |
| 291 | - function wpai_api_parse($functions) { |
|
| 291 | + function wpai_api_parse($functions) { |
|
| 292 | 292 | |
| 293 | - $functions[$this->slug] = array($this, 'parse'); |
|
| 294 | - return $functions; |
|
| 293 | + $functions[$this->slug] = array($this, 'parse'); |
|
| 294 | + return $functions; |
|
| 295 | 295 | |
| 296 | - } |
|
| 296 | + } |
|
| 297 | 297 | |
| 298 | - function wpai_api_post_saved($functions){ |
|
| 299 | - $functions[$this->slug] = array($this, 'post_saved'); |
|
| 300 | - return $functions; |
|
| 301 | - } |
|
| 298 | + function wpai_api_post_saved($functions){ |
|
| 299 | + $functions[$this->slug] = array($this, 'post_saved'); |
|
| 300 | + return $functions; |
|
| 301 | + } |
|
| 302 | 302 | |
| 303 | 303 | |
| 304 | - function wpai_api_import($functions) { |
|
| 304 | + function wpai_api_import($functions) { |
|
| 305 | 305 | |
| 306 | - $functions[$this->slug] = array($this, 'import'); |
|
| 307 | - return $functions; |
|
| 306 | + $functions[$this->slug] = array($this, 'import'); |
|
| 307 | + return $functions; |
|
| 308 | 308 | |
| 309 | - } |
|
| 309 | + } |
|
| 310 | 310 | |
| 311 | - function post_saved( $importData ){ |
|
| 311 | + function post_saved( $importData ){ |
|
| 312 | 312 | |
| 313 | - if (is_callable($this->post_saved_function)) |
|
| 314 | - call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 313 | + if (is_callable($this->post_saved_function)) |
|
| 314 | + call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 315 | 315 | |
| 316 | - } |
|
| 316 | + } |
|
| 317 | 317 | |
| 318 | - function import($importData, $parsedData) { |
|
| 318 | + function import($importData, $parsedData) { |
|
| 319 | 319 | |
| 320 | - if (!$this->is_active_addon($importData['post_type'])) { |
|
| 321 | - return; |
|
| 322 | - } |
|
| 320 | + if (!$this->is_active_addon($importData['post_type'])) { |
|
| 321 | + return; |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - $import_options = $importData['import']['options'][$this->slug]; |
|
| 324 | + $import_options = $importData['import']['options'][$this->slug]; |
|
| 325 | 325 | |
| 326 | - // echo "<pre>"; |
|
| 327 | - // print_r($import_options); |
|
| 328 | - // echo "</pre>"; |
|
| 326 | + // echo "<pre>"; |
|
| 327 | + // print_r($import_options); |
|
| 328 | + // echo "</pre>"; |
|
| 329 | 329 | |
| 330 | - if ( ! empty($parsedData) ) { |
|
| 330 | + if ( ! empty($parsedData) ) { |
|
| 331 | 331 | |
| 332 | - $this->logger = $importData['logger']; |
|
| 332 | + $this->logger = $importData['logger']; |
|
| 333 | 333 | |
| 334 | - $post_id = $importData['pid']; |
|
| 335 | - $index = $importData['i']; |
|
| 336 | - $data = array(); |
|
| 337 | - if (!empty($this->fields)){ |
|
| 338 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 339 | - if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
| 340 | - switch ($field_params['type']) { |
|
| 334 | + $post_id = $importData['pid']; |
|
| 335 | + $index = $importData['i']; |
|
| 336 | + $data = array(); |
|
| 337 | + if (!empty($this->fields)){ |
|
| 338 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 339 | + if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
| 340 | + switch ($field_params['type']) { |
|
| 341 | 341 | |
| 342 | - case 'image': |
|
| 342 | + case 'image': |
|
| 343 | 343 | |
| 344 | - // import the specified image, then set the value of the field to the image ID in the media library |
|
| 344 | + // import the specified image, then set the value of the field to the image ID in the media library |
|
| 345 | 345 | |
| 346 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 346 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 347 | 347 | |
| 348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 349 | - continue 2; |
|
| 350 | - } |
|
| 348 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 349 | + continue 2; |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - $download = $import_options['download_image'][$field_slug]; |
|
| 352 | + $download = $import_options['download_image'][$field_slug]; |
|
| 353 | 353 | |
| 354 | - $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
| 354 | + $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
| 355 | 355 | |
| 356 | - $data[$field_slug] = array( |
|
| 357 | - "attachment_id" => $uploaded_image, |
|
| 358 | - "image_url_or_path" => $image_url_or_path, |
|
| 359 | - "download" => $download |
|
| 360 | - ); |
|
| 356 | + $data[$field_slug] = array( |
|
| 357 | + "attachment_id" => $uploaded_image, |
|
| 358 | + "image_url_or_path" => $image_url_or_path, |
|
| 359 | + "download" => $download |
|
| 360 | + ); |
|
| 361 | 361 | |
| 362 | - break; |
|
| 362 | + break; |
|
| 363 | 363 | |
| 364 | - case 'file': |
|
| 364 | + case 'file': |
|
| 365 | 365 | |
| 366 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 366 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 367 | 367 | |
| 368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 369 | - continue 2; |
|
| 370 | - } |
|
| 368 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 369 | + continue 2; |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - $download = $import_options['download_image'][$field_slug]; |
|
| 372 | + $download = $import_options['download_image'][$field_slug]; |
|
| 373 | 373 | |
| 374 | - $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
| 374 | + $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
| 375 | 375 | |
| 376 | - $data[$field_slug] = array( |
|
| 377 | - "attachment_id" => $uploaded_file, |
|
| 378 | - "image_url_or_path" => $image_url_or_path, |
|
| 379 | - "download" => $download |
|
| 380 | - ); |
|
| 376 | + $data[$field_slug] = array( |
|
| 377 | + "attachment_id" => $uploaded_file, |
|
| 378 | + "image_url_or_path" => $image_url_or_path, |
|
| 379 | + "download" => $download |
|
| 380 | + ); |
|
| 381 | 381 | |
| 382 | - break; |
|
| 382 | + break; |
|
| 383 | 383 | |
| 384 | - default: |
|
| 385 | - // set the field data to the value of the field after it's been parsed |
|
| 386 | - $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
| 387 | - break; |
|
| 388 | - } |
|
| 384 | + default: |
|
| 385 | + // set the field data to the value of the field after it's been parsed |
|
| 386 | + $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
| 387 | + break; |
|
| 388 | + } |
|
| 389 | + |
|
| 390 | + // apply mapping rules if they exist |
|
| 391 | + if (!empty($import_options['mapping'][$field_slug])) { |
|
| 392 | + $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
| 393 | + |
|
| 394 | + if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
| 395 | + foreach ($mapping_rules as $rule_number => $map_to) { |
|
| 396 | + if (isset($map_to[trim($data[$field_slug])])){ |
|
| 397 | + $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
| 398 | + break; |
|
| 399 | + } |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + } |
|
| 403 | + // -------------------- |
|
| 404 | + } |
|
| 405 | + } |
|
| 389 | 406 | |
| 390 | - // apply mapping rules if they exist |
|
| 391 | - if (!empty($import_options['mapping'][$field_slug])) { |
|
| 392 | - $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
| 407 | + call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
| 408 | + } |
|
| 393 | 409 | |
| 394 | - if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
| 395 | - foreach ($mapping_rules as $rule_number => $map_to) { |
|
| 396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
| 397 | - $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
| 398 | - break; |
|
| 399 | - } |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - } |
|
| 403 | - // -------------------- |
|
| 404 | - } |
|
| 405 | - } |
|
| 410 | + } |
|
| 406 | 411 | |
| 407 | - call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
| 408 | - } |
|
| 409 | 412 | |
| 410 | - } |
|
| 413 | + function wpai_api_metabox($post_type, $current_values) { |
|
| 411 | 414 | |
| 415 | + if (!$this->is_active_addon($post_type)) { |
|
| 416 | + return; |
|
| 417 | + } |
|
| 412 | 418 | |
| 413 | - function wpai_api_metabox($post_type, $current_values) { |
|
| 419 | + echo $this->helper_metabox_top($this->name); |
|
| 414 | 420 | |
| 415 | - if (!$this->is_active_addon($post_type)) { |
|
| 416 | - return; |
|
| 417 | - } |
|
| 421 | + $visible_fields = 0; |
|
| 418 | 422 | |
| 419 | - echo $this->helper_metabox_top($this->name); |
|
| 423 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 424 | + if ($field_params['is_sub_field']) continue; |
|
| 425 | + $visible_fields++; |
|
| 426 | + } |
|
| 420 | 427 | |
| 421 | - $visible_fields = 0; |
|
| 428 | + $counter = 0; |
|
| 422 | 429 | |
| 423 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 424 | - if ($field_params['is_sub_field']) continue; |
|
| 425 | - $visible_fields++; |
|
| 426 | - } |
|
| 430 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 427 | 431 | |
| 428 | - $counter = 0; |
|
| 432 | + // do not render sub fields |
|
| 433 | + if ($field_params['is_sub_field']) continue; |
|
| 429 | 434 | |
| 430 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 435 | + $counter++; |
|
| 431 | 436 | |
| 432 | - // do not render sub fields |
|
| 433 | - if ($field_params['is_sub_field']) continue; |
|
| 437 | + $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
| 434 | 438 | |
| 435 | - $counter++; |
|
| 439 | + //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
| 436 | 440 | |
| 437 | - $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
| 441 | + } |
|
| 438 | 442 | |
| 439 | - //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
| 443 | + echo $this->helper_metabox_bottom(); |
|
| 444 | + |
|
| 445 | + if ( ! empty($this->image_sections) ){ |
|
| 446 | + $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
| 447 | + foreach ($this->image_sections as $k => $section) { |
|
| 448 | + $section_options = array(); |
|
| 449 | + foreach ($this->image_options as $slug => $value) { |
|
| 450 | + $section_options[$section['slug'] . $slug] = $value; |
|
| 451 | + } |
|
| 452 | + if ( ! $is_images_section_enabled and ! $k ){ |
|
| 453 | + $section_options[$section['slug'] . 'is_featured'] = 1; |
|
| 454 | + } |
|
| 455 | + PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
| 456 | + } |
|
| 457 | + } |
|
| 440 | 458 | |
| 441 | - } |
|
| 459 | + } |
|
| 442 | 460 | |
| 443 | - echo $this->helper_metabox_bottom(); |
|
| 461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 444 | 462 | |
| 445 | - if ( ! empty($this->image_sections) ){ |
|
| 446 | - $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
| 447 | - foreach ($this->image_sections as $k => $section) { |
|
| 448 | - $section_options = array(); |
|
| 449 | - foreach ($this->image_options as $slug => $value) { |
|
| 450 | - $section_options[$section['slug'] . $slug] = $value; |
|
| 451 | - } |
|
| 452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
| 453 | - $section_options[$section['slug'] . 'is_featured'] = 1; |
|
| 454 | - } |
|
| 455 | - PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
| 456 | - } |
|
| 457 | - } |
|
| 458 | - |
|
| 459 | - } |
|
| 460 | - |
|
| 461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 462 | - |
|
| 463 | - if (!isset($current_values[$this->slug][$field_slug])) { |
|
| 464 | - $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - if ($field_params['type'] == 'text') { |
|
| 468 | - |
|
| 469 | - PMXI_API::add_field( |
|
| 470 | - 'simple', |
|
| 471 | - $field_params['name'], |
|
| 472 | - array( |
|
| 473 | - 'tooltip' => $field_params['tooltip'], |
|
| 474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | - ) |
|
| 477 | - ); |
|
| 478 | - |
|
| 479 | - } else if ($field_params['type'] == 'textarea') { |
|
| 480 | - |
|
| 481 | - PMXI_API::add_field( |
|
| 482 | - 'textarea', |
|
| 483 | - $field_params['name'], |
|
| 484 | - array( |
|
| 485 | - 'tooltip' => $field_params['tooltip'], |
|
| 486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | - ) |
|
| 489 | - ); |
|
| 490 | - |
|
| 491 | - } else if ($field_params['type'] == 'wp_editor') { |
|
| 492 | - |
|
| 493 | - PMXI_API::add_field( |
|
| 494 | - 'wp_editor', |
|
| 495 | - $field_params['name'], |
|
| 496 | - array( |
|
| 497 | - 'tooltip' => $field_params['tooltip'], |
|
| 498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | - ) |
|
| 501 | - ); |
|
| 502 | - |
|
| 503 | - } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
| 463 | + if (!isset($current_values[$this->slug][$field_slug])) { |
|
| 464 | + $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + if ($field_params['type'] == 'text') { |
|
| 468 | + |
|
| 469 | + PMXI_API::add_field( |
|
| 470 | + 'simple', |
|
| 471 | + $field_params['name'], |
|
| 472 | + array( |
|
| 473 | + 'tooltip' => $field_params['tooltip'], |
|
| 474 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | + ) |
|
| 477 | + ); |
|
| 478 | + |
|
| 479 | + } else if ($field_params['type'] == 'textarea') { |
|
| 480 | + |
|
| 481 | + PMXI_API::add_field( |
|
| 482 | + 'textarea', |
|
| 483 | + $field_params['name'], |
|
| 484 | + array( |
|
| 485 | + 'tooltip' => $field_params['tooltip'], |
|
| 486 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | + ) |
|
| 489 | + ); |
|
| 490 | + |
|
| 491 | + } else if ($field_params['type'] == 'wp_editor') { |
|
| 492 | + |
|
| 493 | + PMXI_API::add_field( |
|
| 494 | + 'wp_editor', |
|
| 495 | + $field_params['name'], |
|
| 496 | + array( |
|
| 497 | + 'tooltip' => $field_params['tooltip'], |
|
| 498 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | + ) |
|
| 501 | + ); |
|
| 502 | + |
|
| 503 | + } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
| 504 | 504 | |
| 505 | - if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
| 506 | - |
|
| 507 | - PMXI_API::add_field( |
|
| 508 | - $field_params['type'], |
|
| 509 | - $field_params['name'], |
|
| 510 | - array( |
|
| 511 | - 'tooltip' => $field_params['tooltip'], |
|
| 512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 513 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 514 | - 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
| 515 | - 'field_key' => $field_slug, |
|
| 516 | - 'addon_prefix' => $this->slug |
|
| 517 | - |
|
| 518 | - ) |
|
| 519 | - ); |
|
| 520 | - |
|
| 521 | - } else if ($field_params['type'] == 'radio') { |
|
| 505 | + if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
| 506 | + |
|
| 507 | + PMXI_API::add_field( |
|
| 508 | + $field_params['type'], |
|
| 509 | + $field_params['name'], |
|
| 510 | + array( |
|
| 511 | + 'tooltip' => $field_params['tooltip'], |
|
| 512 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 513 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 514 | + 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
| 515 | + 'field_key' => $field_slug, |
|
| 516 | + 'addon_prefix' => $this->slug |
|
| 517 | + |
|
| 518 | + ) |
|
| 519 | + ); |
|
| 520 | + |
|
| 521 | + } else if ($field_params['type'] == 'radio') { |
|
| 522 | 522 | |
| 523 | - if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
| 524 | - if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
| 525 | - |
|
| 526 | - PMXI_API::add_field( |
|
| 527 | - 'enum', |
|
| 528 | - $field_params['name'], |
|
| 529 | - array( |
|
| 530 | - 'tooltip' => $field_params['tooltip'], |
|
| 531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 532 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 533 | - 'enum_values' => $field_params['enum_values'], |
|
| 534 | - 'mapping' => true, |
|
| 535 | - 'field_key' => $field_slug, |
|
| 536 | - 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
| 537 | - 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
| 538 | - 'addon_prefix' => $this->slug, |
|
| 539 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
| 540 | - ) |
|
| 541 | - ); |
|
| 542 | - |
|
| 543 | - } else if($field_params['type'] == 'accordion') { |
|
| 544 | - |
|
| 545 | - PMXI_API::add_field( |
|
| 546 | - 'accordion', |
|
| 547 | - $field_params['name'], |
|
| 548 | - array( |
|
| 549 | - 'tooltip' => $field_params['tooltip'], |
|
| 550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 551 | - 'field_key' => $field_slug, |
|
| 552 | - 'addon_prefix' => $this->slug, |
|
| 553 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
| 554 | - 'in_the_bottom' => $in_the_bottom |
|
| 555 | - ) |
|
| 556 | - ); |
|
| 557 | - |
|
| 558 | - } else if($field_params['type'] == 'acf') { |
|
| 559 | - $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
| 560 | - $fieldData['ID'] = $field_params['field_obj']->ID; |
|
| 561 | - $fieldData['id'] = $field_params['field_obj']->ID; |
|
| 562 | - $fieldData['label'] = $field_params['field_obj']->post_title; |
|
| 563 | - $fieldData['key'] = $field_params['field_obj']->post_name; |
|
| 564 | - if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 565 | - if (function_exists('pmai_render_field')) { |
|
| 566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 567 | - } |
|
| 568 | - } else if($field_params['type'] == 'title'){ |
|
| 569 | - ?> |
|
| 523 | + if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
| 524 | + if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
| 525 | + |
|
| 526 | + PMXI_API::add_field( |
|
| 527 | + 'enum', |
|
| 528 | + $field_params['name'], |
|
| 529 | + array( |
|
| 530 | + 'tooltip' => $field_params['tooltip'], |
|
| 531 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 532 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 533 | + 'enum_values' => $field_params['enum_values'], |
|
| 534 | + 'mapping' => true, |
|
| 535 | + 'field_key' => $field_slug, |
|
| 536 | + 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
| 537 | + 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
| 538 | + 'addon_prefix' => $this->slug, |
|
| 539 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
| 540 | + ) |
|
| 541 | + ); |
|
| 542 | + |
|
| 543 | + } else if($field_params['type'] == 'accordion') { |
|
| 544 | + |
|
| 545 | + PMXI_API::add_field( |
|
| 546 | + 'accordion', |
|
| 547 | + $field_params['name'], |
|
| 548 | + array( |
|
| 549 | + 'tooltip' => $field_params['tooltip'], |
|
| 550 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 551 | + 'field_key' => $field_slug, |
|
| 552 | + 'addon_prefix' => $this->slug, |
|
| 553 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
| 554 | + 'in_the_bottom' => $in_the_bottom |
|
| 555 | + ) |
|
| 556 | + ); |
|
| 557 | + |
|
| 558 | + } else if($field_params['type'] == 'acf') { |
|
| 559 | + $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
| 560 | + $fieldData['ID'] = $field_params['field_obj']->ID; |
|
| 561 | + $fieldData['id'] = $field_params['field_obj']->ID; |
|
| 562 | + $fieldData['label'] = $field_params['field_obj']->post_title; |
|
| 563 | + $fieldData['key'] = $field_params['field_obj']->post_name; |
|
| 564 | + if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 565 | + if (function_exists('pmai_render_field')) { |
|
| 566 | + echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 567 | + } |
|
| 568 | + } else if($field_params['type'] == 'title'){ |
|
| 569 | + ?> |
|
| 570 | 570 | <h4 class="wpallimport-add-on-options-title"><?php esc_html_e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
| 571 | 571 | <?php |
| 572 | 572 | |
| 573 | - } else if($field_params['type'] == 'plain_text'){ |
|
| 574 | - if ($field_params['is_html']): |
|
| 575 | - echo $field_params['name']; |
|
| 576 | - else: |
|
| 577 | - ?> |
|
| 573 | + } else if($field_params['type'] == 'plain_text'){ |
|
| 574 | + if ($field_params['is_html']): |
|
| 575 | + echo $field_params['name']; |
|
| 576 | + else: |
|
| 577 | + ?> |
|
| 578 | 578 | <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
| 579 | 579 | <?php |
| 580 | - endif; |
|
| 581 | - } |
|
| 580 | + endif; |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | 583 | |
| 584 | - } |
|
| 585 | - /** |
|
| 586 | - * |
|
| 587 | - * Helper function for nested radio fields |
|
| 588 | - * |
|
| 589 | - */ |
|
| 590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 591 | - $sub_fields = array(); |
|
| 592 | - if ( ! empty($field_params['enum_values']) ){ |
|
| 593 | - foreach ($field_params['enum_values'] as $key => $value) { |
|
| 594 | - $sub_fields[$key] = array(); |
|
| 595 | - if (is_array($value)){ |
|
| 596 | - if ($field_params['type'] == 'accordion'){ |
|
| 597 | - $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
| 598 | - } |
|
| 599 | - else |
|
| 600 | - { |
|
| 601 | - foreach ($value as $k => $sub_field) { |
|
| 602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 603 | - { |
|
| 604 | - $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
| 605 | - } |
|
| 606 | - } |
|
| 607 | - } |
|
| 608 | - } |
|
| 609 | - } |
|
| 610 | - } |
|
| 611 | - return $sub_fields; |
|
| 612 | - } |
|
| 613 | - |
|
| 614 | - function convert_field($sub_field, $current_values){ |
|
| 615 | - $field = array(); |
|
| 616 | - if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
| 617 | - $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
| 618 | - } |
|
| 619 | - switch ($this->fields[$sub_field['slug']]['type']) { |
|
| 620 | - case 'text': |
|
| 621 | - $field = array( |
|
| 622 | - 'type' => 'simple', |
|
| 623 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 624 | - 'params' => array( |
|
| 625 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 627 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 628 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 629 | - ) |
|
| 630 | - ); |
|
| 631 | - break; |
|
| 632 | - case 'textarea': |
|
| 633 | - $field = array( |
|
| 634 | - 'type' => 'textarea', |
|
| 635 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 636 | - 'params' => array( |
|
| 637 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 639 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 640 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 641 | - ) |
|
| 642 | - ); |
|
| 643 | - break; |
|
| 644 | - case 'wp_editor': |
|
| 645 | - $field = array( |
|
| 646 | - 'type' => 'wp_editor', |
|
| 647 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 648 | - 'params' => array( |
|
| 649 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 651 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 652 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 653 | - ) |
|
| 654 | - ); |
|
| 655 | - break; |
|
| 656 | - case 'image': |
|
| 657 | - $field = array( |
|
| 658 | - 'type' => 'image', |
|
| 659 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 660 | - 'params' => array( |
|
| 661 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 663 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 664 | - 'download_image' => null, |
|
| 665 | - 'field_key' => $sub_field['slug'], |
|
| 666 | - 'addon_prefix' => $this->slug, |
|
| 667 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 668 | - ) |
|
| 669 | - ); |
|
| 670 | - |
|
| 671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 672 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 673 | - } |
|
| 584 | + } |
|
| 585 | + /** |
|
| 586 | + * |
|
| 587 | + * Helper function for nested radio fields |
|
| 588 | + * |
|
| 589 | + */ |
|
| 590 | + function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 591 | + $sub_fields = array(); |
|
| 592 | + if ( ! empty($field_params['enum_values']) ){ |
|
| 593 | + foreach ($field_params['enum_values'] as $key => $value) { |
|
| 594 | + $sub_fields[$key] = array(); |
|
| 595 | + if (is_array($value)){ |
|
| 596 | + if ($field_params['type'] == 'accordion'){ |
|
| 597 | + $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
| 598 | + } |
|
| 599 | + else |
|
| 600 | + { |
|
| 601 | + foreach ($value as $k => $sub_field) { |
|
| 602 | + if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 603 | + { |
|
| 604 | + $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
| 605 | + } |
|
| 606 | + } |
|
| 607 | + } |
|
| 608 | + } |
|
| 609 | + } |
|
| 610 | + } |
|
| 611 | + return $sub_fields; |
|
| 612 | + } |
|
| 613 | + |
|
| 614 | + function convert_field($sub_field, $current_values){ |
|
| 615 | + $field = array(); |
|
| 616 | + if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
| 617 | + $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
| 618 | + } |
|
| 619 | + switch ($this->fields[$sub_field['slug']]['type']) { |
|
| 620 | + case 'text': |
|
| 621 | + $field = array( |
|
| 622 | + 'type' => 'simple', |
|
| 623 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 624 | + 'params' => array( |
|
| 625 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 626 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 627 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 628 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 629 | + ) |
|
| 630 | + ); |
|
| 674 | 631 | break; |
| 675 | - case 'file': |
|
| 676 | - $field = array( |
|
| 677 | - 'type' => 'file', |
|
| 678 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 679 | - 'params' => array( |
|
| 680 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 682 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 683 | - 'download_image' => null, |
|
| 684 | - 'field_key' => $sub_field['slug'], |
|
| 685 | - 'addon_prefix' => $this->slug, |
|
| 686 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 687 | - ) |
|
| 688 | - ); |
|
| 689 | - |
|
| 690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 691 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 692 | - } |
|
| 693 | - |
|
| 694 | - break; |
|
| 695 | - case 'radio': |
|
| 696 | - $field = array( |
|
| 697 | - 'type' => 'enum', |
|
| 698 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 699 | - 'params' => array( |
|
| 700 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 702 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 703 | - 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
| 704 | - 'mapping' => true, |
|
| 705 | - 'field_key' => $sub_field['slug'], |
|
| 706 | - 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
| 707 | - 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
| 708 | - 'addon_prefix' => $this->slug, |
|
| 709 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 710 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 711 | - ) |
|
| 712 | - ); |
|
| 713 | - break; |
|
| 714 | - case 'accordion': |
|
| 715 | - $field = array( |
|
| 716 | - 'type' => 'accordion', |
|
| 717 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 718 | - 'params' => array( |
|
| 719 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 721 | - 'field_key' => $sub_field['slug'], |
|
| 722 | - 'addon_prefix' => $this->slug, |
|
| 723 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 724 | - 'in_the_bottom' => false |
|
| 725 | - ) |
|
| 726 | - ); |
|
| 727 | - break; |
|
| 728 | - default: |
|
| 729 | - # code... |
|
| 730 | - break; |
|
| 731 | - } |
|
| 732 | - return $field; |
|
| 733 | - } |
|
| 734 | - |
|
| 735 | - /** |
|
| 736 | - * |
|
| 737 | - * Add accordion options |
|
| 738 | - * |
|
| 739 | - * |
|
| 740 | - */ |
|
| 741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 632 | + case 'textarea': |
|
| 633 | + $field = array( |
|
| 634 | + 'type' => 'textarea', |
|
| 635 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 636 | + 'params' => array( |
|
| 637 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 638 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 639 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 640 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 641 | + ) |
|
| 642 | + ); |
|
| 643 | + break; |
|
| 644 | + case 'wp_editor': |
|
| 645 | + $field = array( |
|
| 646 | + 'type' => 'wp_editor', |
|
| 647 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 648 | + 'params' => array( |
|
| 649 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 650 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 651 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 652 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 653 | + ) |
|
| 654 | + ); |
|
| 655 | + break; |
|
| 656 | + case 'image': |
|
| 657 | + $field = array( |
|
| 658 | + 'type' => 'image', |
|
| 659 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 660 | + 'params' => array( |
|
| 661 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 662 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 663 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 664 | + 'download_image' => null, |
|
| 665 | + 'field_key' => $sub_field['slug'], |
|
| 666 | + 'addon_prefix' => $this->slug, |
|
| 667 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 668 | + ) |
|
| 669 | + ); |
|
| 670 | + |
|
| 671 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 672 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 673 | + } |
|
| 674 | + break; |
|
| 675 | + case 'file': |
|
| 676 | + $field = array( |
|
| 677 | + 'type' => 'file', |
|
| 678 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 679 | + 'params' => array( |
|
| 680 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 681 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 682 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 683 | + 'download_image' => null, |
|
| 684 | + 'field_key' => $sub_field['slug'], |
|
| 685 | + 'addon_prefix' => $this->slug, |
|
| 686 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 687 | + ) |
|
| 688 | + ); |
|
| 689 | + |
|
| 690 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 691 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 692 | + } |
|
| 693 | + |
|
| 694 | + break; |
|
| 695 | + case 'radio': |
|
| 696 | + $field = array( |
|
| 697 | + 'type' => 'enum', |
|
| 698 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 699 | + 'params' => array( |
|
| 700 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 701 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 702 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 703 | + 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
| 704 | + 'mapping' => true, |
|
| 705 | + 'field_key' => $sub_field['slug'], |
|
| 706 | + 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
| 707 | + 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
| 708 | + 'addon_prefix' => $this->slug, |
|
| 709 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 710 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 711 | + ) |
|
| 712 | + ); |
|
| 713 | + break; |
|
| 714 | + case 'accordion': |
|
| 715 | + $field = array( |
|
| 716 | + 'type' => 'accordion', |
|
| 717 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 718 | + 'params' => array( |
|
| 719 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 720 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 721 | + 'field_key' => $sub_field['slug'], |
|
| 722 | + 'addon_prefix' => $this->slug, |
|
| 723 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 724 | + 'in_the_bottom' => false |
|
| 725 | + ) |
|
| 726 | + ); |
|
| 727 | + break; |
|
| 728 | + default: |
|
| 729 | + # code... |
|
| 730 | + break; |
|
| 731 | + } |
|
| 732 | + return $field; |
|
| 733 | + } |
|
| 734 | + |
|
| 735 | + /** |
|
| 736 | + * |
|
| 737 | + * Add accordion options |
|
| 738 | + * |
|
| 739 | + * |
|
| 740 | + */ |
|
| 741 | + function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 742 | 742 | |
| 743 | - if ( ! empty($fields) ) |
|
| 744 | - { |
|
| 743 | + if ( ! empty($fields) ) |
|
| 744 | + { |
|
| 745 | 745 | |
| 746 | - if ($main_field){ |
|
| 746 | + if ($main_field){ |
|
| 747 | 747 | |
| 748 | - $main_field['is_main_field'] = true; |
|
| 749 | - $fields[] = $main_field; |
|
| 748 | + $main_field['is_main_field'] = true; |
|
| 749 | + $fields[] = $main_field; |
|
| 750 | 750 | |
| 751 | - } |
|
| 751 | + } |
|
| 752 | 752 | |
| 753 | - return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
| 753 | + return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
| 754 | 754 | |
| 755 | - } |
|
| 755 | + } |
|
| 756 | 756 | |
| 757 | - } |
|
| 757 | + } |
|
| 758 | 758 | |
| 759 | - function add_title($title = '', $tooltip = ''){ |
|
| 759 | + function add_title($title = '', $tooltip = ''){ |
|
| 760 | 760 | |
| 761 | - if (empty($title)) return; |
|
| 761 | + if (empty($title)) return; |
|
| 762 | 762 | |
| 763 | - return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
| 763 | + return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
| 764 | 764 | |
| 765 | - } |
|
| 765 | + } |
|
| 766 | 766 | |
| 767 | - function add_text($text = '', $is_html = false){ |
|
| 767 | + function add_text($text = '', $is_html = false){ |
|
| 768 | 768 | |
| 769 | - if (empty($text)) return; |
|
| 769 | + if (empty($text)) return; |
|
| 770 | 770 | |
| 771 | - $count = is_array($this->fields) ? count($this->fields) : 0; |
|
| 771 | + $count = is_array($this->fields) ? count($this->fields) : 0; |
|
| 772 | 772 | |
| 773 | - return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
| 773 | + return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
| 774 | 774 | |
| 775 | - } |
|
| 775 | + } |
|
| 776 | 776 | |
| 777 | - function helper_metabox_top($name) { |
|
| 777 | + function helper_metabox_top($name) { |
|
| 778 | 778 | |
| 779 | - return ' |
|
| 779 | + return ' |
|
| 780 | 780 | <style type="text/css"> |
| 781 | 781 | .wpallimport-plugin .wpallimport-addon div.input { |
| 782 | 782 | margin-bottom: 15px; |
@@ -872,11 +872,11 @@ discard block |
||
| 872 | 872 | <table class="form-table" style="max-width:none;"> |
| 873 | 873 | <tr> |
| 874 | 874 | <td colspan="3">'; |
| 875 | - } |
|
| 875 | + } |
|
| 876 | 876 | |
| 877 | - function helper_metabox_bottom() { |
|
| 877 | + function helper_metabox_bottom() { |
|
| 878 | 878 | |
| 879 | - return ' </td> |
|
| 879 | + return ' </td> |
|
| 880 | 880 | </tr> |
| 881 | 881 | </table> |
| 882 | 882 | </div> |
@@ -884,298 +884,298 @@ discard block |
||
| 884 | 884 | </div> |
| 885 | 885 | </div>'; |
| 886 | 886 | |
| 887 | - } |
|
| 887 | + } |
|
| 888 | 888 | |
| 889 | - /** |
|
| 890 | - * |
|
| 891 | - * simply add an additional section for attachments |
|
| 892 | - * |
|
| 893 | - */ |
|
| 894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
| 896 | - } |
|
| 889 | + /** |
|
| 890 | + * |
|
| 891 | + * simply add an additional section for attachments |
|
| 892 | + * |
|
| 893 | + */ |
|
| 894 | + function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | + $this->import_images( $slug, $title, 'files', $callback); |
|
| 896 | + } |
|
| 897 | 897 | |
| 898 | - /** |
|
| 899 | - * |
|
| 900 | - * simply add an additional section |
|
| 901 | - * |
|
| 902 | - */ |
|
| 903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 898 | + /** |
|
| 899 | + * |
|
| 900 | + * simply add an additional section |
|
| 901 | + * |
|
| 902 | + */ |
|
| 903 | + function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 904 | 904 | |
| 905 | - if ( empty($title) or empty($slug) ) return; |
|
| 905 | + if ( empty($title) or empty($slug) ) return; |
|
| 906 | 906 | |
| 907 | - if (is_array($slug)) { |
|
| 907 | + if (is_array($slug)) { |
|
| 908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
| 909 | 909 | } else { |
| 910 | 910 | $section_slug = 'pmxi_' . $slug; |
| 911 | 911 | } |
| 912 | 912 | |
| 913 | - $this->image_sections[] = array( |
|
| 914 | - 'title' => $title, |
|
| 915 | - 'slug' => $section_slug, |
|
| 916 | - 'type' => $type |
|
| 917 | - ); |
|
| 913 | + $this->image_sections[] = array( |
|
| 914 | + 'title' => $title, |
|
| 915 | + 'slug' => $section_slug, |
|
| 916 | + 'type' => $type |
|
| 917 | + ); |
|
| 918 | 918 | |
| 919 | - foreach ($this->image_options as $option_slug => $value) { |
|
| 920 | - $this->add_option($section_slug . $option_slug, $value); |
|
| 921 | - } |
|
| 919 | + foreach ($this->image_options as $option_slug => $value) { |
|
| 920 | + $this->add_option($section_slug . $option_slug, $value); |
|
| 921 | + } |
|
| 922 | 922 | |
| 923 | - if (count($this->image_sections) > 1){ |
|
| 924 | - add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
| 925 | - } |
|
| 923 | + if (count($this->image_sections) > 1){ |
|
| 924 | + add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | - add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
| 927 | + add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
| 928 | 928 | |
| 929 | - if ($callback && is_callable($callback)) { |
|
| 929 | + if ($callback && is_callable($callback)) { |
|
| 930 | 930 | add_action( $section_slug, $callback, 10, 4); |
| 931 | 931 | } else { |
| 932 | 932 | if (function_exists($slug)) { |
| 933 | 933 | add_action( $section_slug, $slug, 10, 4); |
| 934 | 934 | } |
| 935 | 935 | } |
| 936 | - } |
|
| 937 | - /** |
|
| 938 | - * |
|
| 939 | - * filter to allow import images for free edition of WP All Import |
|
| 940 | - * |
|
| 941 | - */ |
|
| 942 | - function is_allow_import_images($is_allow, $post_type){ |
|
| 943 | - return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
| 944 | - } |
|
| 945 | - |
|
| 946 | - /** |
|
| 947 | - * |
|
| 948 | - * filter to control additional images sections |
|
| 949 | - * |
|
| 950 | - */ |
|
| 951 | - function additional_sections($sections){ |
|
| 952 | - if ( ! empty($this->image_sections) ){ |
|
| 953 | - foreach ($this->image_sections as $add_section) { |
|
| 954 | - $sections[] = $add_section; |
|
| 955 | - } |
|
| 956 | - } |
|
| 936 | + } |
|
| 937 | + /** |
|
| 938 | + * |
|
| 939 | + * filter to allow import images for free edition of WP All Import |
|
| 940 | + * |
|
| 941 | + */ |
|
| 942 | + function is_allow_import_images($is_allow, $post_type){ |
|
| 943 | + return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
| 944 | + } |
|
| 945 | + |
|
| 946 | + /** |
|
| 947 | + * |
|
| 948 | + * filter to control additional images sections |
|
| 949 | + * |
|
| 950 | + */ |
|
| 951 | + function additional_sections($sections){ |
|
| 952 | + if ( ! empty($this->image_sections) ){ |
|
| 953 | + foreach ($this->image_sections as $add_section) { |
|
| 954 | + $sections[] = $add_section; |
|
| 955 | + } |
|
| 956 | + } |
|
| 957 | 957 | |
| 958 | - return $sections; |
|
| 959 | - } |
|
| 960 | - /** |
|
| 961 | - * |
|
| 962 | - * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
| 963 | - * |
|
| 964 | - */ |
|
| 965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 966 | - return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
| 967 | - } |
|
| 968 | - |
|
| 969 | - /** |
|
| 970 | - * |
|
| 971 | - * disable the default images section |
|
| 972 | - * |
|
| 973 | - */ |
|
| 974 | - function disable_default_images($post_type = false){ |
|
| 958 | + return $sections; |
|
| 959 | + } |
|
| 960 | + /** |
|
| 961 | + * |
|
| 962 | + * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
| 963 | + * |
|
| 964 | + */ |
|
| 965 | + function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 966 | + return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
| 967 | + } |
|
| 968 | + |
|
| 969 | + /** |
|
| 970 | + * |
|
| 971 | + * disable the default images section |
|
| 972 | + * |
|
| 973 | + */ |
|
| 974 | + function disable_default_images($post_type = false){ |
|
| 975 | 975 | |
| 976 | - add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
| 976 | + add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
| 977 | 977 | |
| 978 | - } |
|
| 979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 978 | + } |
|
| 979 | + function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 980 | 980 | |
| 981 | - return ($this->is_active_addon($post_type)) ? false : true; |
|
| 981 | + return ($this->is_active_addon($post_type)) ? false : true; |
|
| 982 | 982 | |
| 983 | - } |
|
| 983 | + } |
|
| 984 | 984 | |
| 985 | - function helper_parse($parsingData, $options) { |
|
| 985 | + function helper_parse($parsingData, $options) { |
|
| 986 | 986 | |
| 987 | - extract($parsingData); |
|
| 987 | + extract($parsingData); |
|
| 988 | 988 | |
| 989 | - $data = array(); // parsed data |
|
| 989 | + $data = array(); // parsed data |
|
| 990 | 990 | |
| 991 | - if ( ! empty($import->options[$this->slug])){ |
|
| 991 | + if ( ! empty($import->options[$this->slug])){ |
|
| 992 | 992 | |
| 993 | - $this->logger = $parsingData['logger']; |
|
| 993 | + $this->logger = $parsingData['logger']; |
|
| 994 | 994 | |
| 995 | - $cxpath = $xpath_prefix . $import->xpath; |
|
| 995 | + $cxpath = $xpath_prefix . $import->xpath; |
|
| 996 | 996 | |
| 997 | - $tmp_files = array(); |
|
| 997 | + $tmp_files = array(); |
|
| 998 | 998 | |
| 999 | - foreach ($options[$this->slug] as $option_name => $option_value) { |
|
| 1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | - if ($import->options[$this->slug][$option_name] == "xpath") { |
|
| 1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1003 | - $count and $data[$option_name] = array_fill(0, $count, ""); |
|
| 1004 | - } else { |
|
| 1005 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
| 1006 | - $tmp_files[] = $file; |
|
| 1007 | - } |
|
| 1008 | - } |
|
| 1009 | - else { |
|
| 1010 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
| 1011 | - $tmp_files[] = $file; |
|
| 1012 | - } |
|
| 999 | + foreach ($options[$this->slug] as $option_name => $option_value) { |
|
| 1000 | + if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | + if ($import->options[$this->slug][$option_name] == "xpath") { |
|
| 1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1003 | + $count and $data[$option_name] = array_fill(0, $count, ""); |
|
| 1004 | + } else { |
|
| 1005 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
| 1006 | + $tmp_files[] = $file; |
|
| 1007 | + } |
|
| 1008 | + } |
|
| 1009 | + else { |
|
| 1010 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
| 1011 | + $tmp_files[] = $file; |
|
| 1012 | + } |
|
| 1013 | 1013 | |
| 1014 | 1014 | |
| 1015 | - } else { |
|
| 1016 | - $data[$option_name] = array_fill(0, $count, ""); |
|
| 1017 | - } |
|
| 1015 | + } else { |
|
| 1016 | + $data[$option_name] = array_fill(0, $count, ""); |
|
| 1017 | + } |
|
| 1018 | 1018 | |
| 1019 | - } |
|
| 1019 | + } |
|
| 1020 | 1020 | |
| 1021 | - foreach ($tmp_files as $file) { // remove all temporary files created |
|
| 1022 | - unlink($file); |
|
| 1023 | - } |
|
| 1021 | + foreach ($tmp_files as $file) { // remove all temporary files created |
|
| 1022 | + unlink($file); |
|
| 1023 | + } |
|
| 1024 | 1024 | |
| 1025 | - } |
|
| 1025 | + } |
|
| 1026 | 1026 | |
| 1027 | - return $data; |
|
| 1028 | - } |
|
| 1027 | + return $data; |
|
| 1028 | + } |
|
| 1029 | 1029 | |
| 1030 | 1030 | |
| 1031 | - function can_update_meta($meta_key, $import_options) { |
|
| 1031 | + function can_update_meta($meta_key, $import_options) { |
|
| 1032 | 1032 | |
| 1033 | - //echo "<pre>"; |
|
| 1034 | - //print_r($import_options['options']); |
|
| 1035 | - //echo "</pre>"; |
|
| 1033 | + //echo "<pre>"; |
|
| 1034 | + //print_r($import_options['options']); |
|
| 1035 | + //echo "</pre>"; |
|
| 1036 | 1036 | |
| 1037 | - $import_options = $import_options['options']; |
|
| 1037 | + $import_options = $import_options['options']; |
|
| 1038 | 1038 | |
| 1039 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1039 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1040 | 1040 | |
| 1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1041 | + if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1042 | 1042 | |
| 1043 | - if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
| 1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1043 | + if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
| 1044 | + if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1046 | 1046 | |
| 1047 | - return false; |
|
| 1047 | + return false; |
|
| 1048 | 1048 | |
| 1049 | - } |
|
| 1049 | + } |
|
| 1050 | 1050 | |
| 1051 | - function can_update_taxonomy($tax_name, $import_options) { |
|
| 1051 | + function can_update_taxonomy($tax_name, $import_options) { |
|
| 1052 | 1052 | |
| 1053 | - //echo "<pre>"; |
|
| 1054 | - //print_r($import_options['options']); |
|
| 1055 | - //echo "</pre>"; |
|
| 1053 | + //echo "<pre>"; |
|
| 1054 | + //print_r($import_options['options']); |
|
| 1055 | + //echo "</pre>"; |
|
| 1056 | 1056 | |
| 1057 | - $import_options = $import_options['options']; |
|
| 1057 | + $import_options = $import_options['options']; |
|
| 1058 | 1058 | |
| 1059 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1059 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1060 | 1060 | |
| 1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1061 | + if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1062 | 1062 | |
| 1063 | - if ($import_options['update_categories_logic'] == "full_update") return true; |
|
| 1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1063 | + if ($import_options['update_categories_logic'] == "full_update") return true; |
|
| 1064 | + if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | + if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1066 | 1066 | |
| 1067 | - return false; |
|
| 1067 | + return false; |
|
| 1068 | 1068 | |
| 1069 | - } |
|
| 1069 | + } |
|
| 1070 | 1070 | |
| 1071 | - function can_update_image($import_options) { |
|
| 1071 | + function can_update_image($import_options) { |
|
| 1072 | 1072 | |
| 1073 | - $import_options = $import_options['options']; |
|
| 1073 | + $import_options = $import_options['options']; |
|
| 1074 | 1074 | |
| 1075 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1075 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1076 | 1076 | |
| 1077 | - if (!$import_options['is_update_images']) return false; |
|
| 1077 | + if (!$import_options['is_update_images']) return false; |
|
| 1078 | 1078 | |
| 1079 | - if ($import_options['is_update_images']) return true; |
|
| 1079 | + if ($import_options['is_update_images']) return true; |
|
| 1080 | 1080 | |
| 1081 | - return false; |
|
| 1082 | - } |
|
| 1081 | + return false; |
|
| 1082 | + } |
|
| 1083 | 1083 | |
| 1084 | 1084 | |
| 1085 | - function admin_notice_ignore() { |
|
| 1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | - update_option($this->slug.'_ignore', 'true'); |
|
| 1088 | - } |
|
| 1089 | - } |
|
| 1085 | + function admin_notice_ignore() { |
|
| 1086 | + if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | + update_option($this->slug.'_ignore', 'true'); |
|
| 1088 | + } |
|
| 1089 | + } |
|
| 1090 | 1090 | |
| 1091 | - function display_admin_notice() { |
|
| 1091 | + function display_admin_notice() { |
|
| 1092 | 1092 | |
| 1093 | 1093 | |
| 1094 | - if ($this->notice_text) { |
|
| 1095 | - $notice_text = $this->notice_text; |
|
| 1096 | - } else { |
|
| 1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | - } |
|
| 1094 | + if ($this->notice_text) { |
|
| 1095 | + $notice_text = $this->notice_text; |
|
| 1096 | + } else { |
|
| 1097 | + $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | + } |
|
| 1099 | 1099 | |
| 1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1100 | + if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1101 | 1101 | |
| 1102 | - ?> |
|
| 1102 | + ?> |
|
| 1103 | 1103 | |
| 1104 | 1104 | <div class="error notice is-dismissible wpallimport-dismissible" style="margin-top: 10px;" rel="<?php echo esc_attr($this->slug); ?>"> |
| 1105 | 1105 | <p><?php echo wp_kses_post(__( |
| 1106 | - sprintf( |
|
| 1107 | - $notice_text, |
|
| 1108 | - '?'.$this->slug.'_ignore=0' |
|
| 1109 | - ), |
|
| 1110 | - 'rapid_addon_'.$this->slug |
|
| 1111 | - )); ?></p> |
|
| 1106 | + sprintf( |
|
| 1107 | + $notice_text, |
|
| 1108 | + '?'.$this->slug.'_ignore=0' |
|
| 1109 | + ), |
|
| 1110 | + 'rapid_addon_'.$this->slug |
|
| 1111 | + )); ?></p> |
|
| 1112 | 1112 | </div> |
| 1113 | 1113 | |
| 1114 | 1114 | <?php |
| 1115 | 1115 | |
| 1116 | - } |
|
| 1116 | + } |
|
| 1117 | 1117 | |
| 1118 | - } |
|
| 1118 | + } |
|
| 1119 | 1119 | |
| 1120 | - /* |
|
| 1120 | + /* |
|
| 1121 | 1121 | * |
| 1122 | 1122 | * $conditions - array('themes' => array('Realia'), 'plugins' => array('plugin-directory/plugin-file.php', 'plugin-directory2/plugin-file.php')) |
| 1123 | 1123 | * |
| 1124 | 1124 | */ |
| 1125 | - function admin_notice($notice_text = '', $conditions = array()) { |
|
| 1125 | + function admin_notice($notice_text = '', $conditions = array()) { |
|
| 1126 | 1126 | |
| 1127 | - $is_show_notice = false; |
|
| 1127 | + $is_show_notice = false; |
|
| 1128 | 1128 | |
| 1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1129 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1130 | 1130 | |
| 1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1132 | - $is_show_notice = true; |
|
| 1133 | - } |
|
| 1131 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1132 | + $is_show_notice = true; |
|
| 1133 | + } |
|
| 1134 | 1134 | |
| 1135 | - // Supported Themes |
|
| 1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1135 | + // Supported Themes |
|
| 1136 | + if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1137 | 1137 | |
| 1138 | - $themeInfo = wp_get_theme(); |
|
| 1139 | - $parentInfo = $themeInfo->parent(); |
|
| 1140 | - $currentTheme = $themeInfo->get('Name'); |
|
| 1138 | + $themeInfo = wp_get_theme(); |
|
| 1139 | + $parentInfo = $themeInfo->parent(); |
|
| 1140 | + $currentTheme = $themeInfo->get('Name'); |
|
| 1141 | 1141 | |
| 1142 | - $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
| 1142 | + $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
| 1143 | 1143 | |
| 1144 | - if ( $is_show_notice and $parentInfo ){ |
|
| 1145 | - $parent_theme = $parentInfo->get('Name'); |
|
| 1146 | - $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
| 1147 | - } |
|
| 1144 | + if ( $is_show_notice and $parentInfo ){ |
|
| 1145 | + $parent_theme = $parentInfo->get('Name'); |
|
| 1146 | + $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
| 1147 | + } |
|
| 1148 | 1148 | |
| 1149 | - } |
|
| 1149 | + } |
|
| 1150 | 1150 | |
| 1151 | - // Required Plugins |
|
| 1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1151 | + // Required Plugins |
|
| 1152 | + if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1153 | 1153 | |
| 1154 | - $requires_counter = 0; |
|
| 1155 | - foreach ($conditions['plugins'] as $plugin) { |
|
| 1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1157 | - } |
|
| 1154 | + $requires_counter = 0; |
|
| 1155 | + foreach ($conditions['plugins'] as $plugin) { |
|
| 1156 | + if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1157 | + } |
|
| 1158 | 1158 | |
| 1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
| 1160 | - $is_show_notice = true; |
|
| 1161 | - } |
|
| 1159 | + if ($requires_counter != count($conditions['plugins'])){ |
|
| 1160 | + $is_show_notice = true; |
|
| 1161 | + } |
|
| 1162 | 1162 | |
| 1163 | - } |
|
| 1163 | + } |
|
| 1164 | 1164 | |
| 1165 | - if ( $is_show_notice ){ |
|
| 1165 | + if ( $is_show_notice ){ |
|
| 1166 | 1166 | |
| 1167 | - if ( $notice_text != '' ) { |
|
| 1168 | - $this->notice_text = $notice_text; |
|
| 1169 | - } |
|
| 1167 | + if ( $notice_text != '' ) { |
|
| 1168 | + $this->notice_text = $notice_text; |
|
| 1169 | + } |
|
| 1170 | 1170 | |
| 1171 | - add_action('admin_notices', array($this, 'display_admin_notice')); |
|
| 1172 | - } |
|
| 1171 | + add_action('admin_notices', array($this, 'display_admin_notice')); |
|
| 1172 | + } |
|
| 1173 | 1173 | |
| 1174 | - } |
|
| 1174 | + } |
|
| 1175 | 1175 | |
| 1176 | - function log( $m = false){ |
|
| 1176 | + function log( $m = false){ |
|
| 1177 | 1177 | |
| 1178 | - $m and $this->logger and call_user_func($this->logger, $m); |
|
| 1178 | + $m and $this->logger and call_user_func($this->logger, $m); |
|
| 1179 | 1179 | |
| 1180 | 1180 | } |
| 1181 | 1181 | |
@@ -1293,5 +1293,5 @@ discard block |
||
| 1293 | 1293 | } |
| 1294 | 1294 | return $image; |
| 1295 | 1295 | } |
| 1296 | - } |
|
| 1296 | + } |
|
| 1297 | 1297 | } |
| 1298 | 1298 | \ No newline at end of file |
@@ -26,90 +26,90 @@ |
||
| 26 | 26 | |
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | - // Fires before printing a line item column. |
|
| 30 | - do_action( "getpaid_invoice_line_item_before_$column", $item, $invoice ); |
|
| 29 | + // Fires before printing a line item column. |
|
| 30 | + do_action( "getpaid_invoice_line_item_before_$column", $item, $invoice ); |
|
| 31 | 31 | |
| 32 | - // Item name. |
|
| 33 | - if ( 'name' === $column ) { |
|
| 32 | + // Item name. |
|
| 33 | + if ( 'name' === $column ) { |
|
| 34 | 34 | |
| 35 | - $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
| 35 | + $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
| 36 | 36 | |
| 37 | - if ( $has_featured_image ) { |
|
| 38 | - echo '<div class="d-flex align-items-center getpaid-form-item-has-featured-image">'; |
|
| 39 | - echo '<div class="getpaid-form-item-image-container mr-2">'; |
|
| 40 | - echo get_the_post_thumbnail( $item->get_id(), 'thumbnail', array( 'class' => 'getpaid-form-item-image mb-0' ) ); |
|
| 41 | - echo '</div>'; |
|
| 42 | - echo '<div class="getpaid-form-item-name-container">'; |
|
| 43 | - } |
|
| 37 | + if ( $has_featured_image ) { |
|
| 38 | + echo '<div class="d-flex align-items-center getpaid-form-item-has-featured-image">'; |
|
| 39 | + echo '<div class="getpaid-form-item-image-container mr-2">'; |
|
| 40 | + echo get_the_post_thumbnail( $item->get_id(), 'thumbnail', array( 'class' => 'getpaid-form-item-image mb-0' ) ); |
|
| 41 | + echo '</div>'; |
|
| 42 | + echo '<div class="getpaid-form-item-name-container">'; |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - // Display the name. |
|
| 46 | - echo '<div class="mb-1">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 45 | + // Display the name. |
|
| 46 | + echo '<div class="mb-1">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 47 | 47 | |
| 48 | - // And an optional description. |
|
| 49 | - $description = $item->get_description(); |
|
| 48 | + // And an optional description. |
|
| 49 | + $description = $item->get_description(); |
|
| 50 | 50 | |
| 51 | - if ( ! empty( $description ) ) { |
|
| 52 | - echo "<small class='form-text text-muted pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
| 53 | - } |
|
| 51 | + if ( ! empty( $description ) ) { |
|
| 52 | + echo "<small class='form-text text-muted pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - // Fires before printing the line item actions. |
|
| 56 | - do_action( 'getpaid_before_invoice_line_item_actions', $item, $invoice ); |
|
| 55 | + // Fires before printing the line item actions. |
|
| 56 | + do_action( 'getpaid_before_invoice_line_item_actions', $item, $invoice ); |
|
| 57 | 57 | |
| 58 | - $actions = apply_filters( 'getpaid-invoice-page-line-item-actions', array(), $item, $invoice ); |
|
| 58 | + $actions = apply_filters( 'getpaid-invoice-page-line-item-actions', array(), $item, $invoice ); |
|
| 59 | 59 | |
| 60 | - if ( ! empty( $actions ) ) { |
|
| 60 | + if ( ! empty( $actions ) ) { |
|
| 61 | 61 | |
| 62 | - $sanitized = array(); |
|
| 63 | - foreach ( $actions as $key => $item_action ) { |
|
| 64 | - $key = sanitize_html_class( $key ); |
|
| 65 | - $item_action = wp_kses_post( $item_action ); |
|
| 66 | - $sanitized[] = "<span class='$key'>$item_action</span>"; |
|
| 67 | - } |
|
| 62 | + $sanitized = array(); |
|
| 63 | + foreach ( $actions as $key => $item_action ) { |
|
| 64 | + $key = sanitize_html_class( $key ); |
|
| 65 | + $item_action = wp_kses_post( $item_action ); |
|
| 66 | + $sanitized[] = "<span class='$key'>$item_action</span>"; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - echo "<small class='form-text getpaid-line-item-actions'>"; |
|
| 70 | - echo wp_kses_post( implode( ' | ', $sanitized ) ); |
|
| 71 | - echo '</small>'; |
|
| 69 | + echo "<small class='form-text getpaid-line-item-actions'>"; |
|
| 70 | + echo wp_kses_post( implode( ' | ', $sanitized ) ); |
|
| 71 | + echo '</small>'; |
|
| 72 | 72 | |
| 73 | - } |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - if ( $has_featured_image ) { |
|
| 76 | - echo '</div>'; |
|
| 77 | - echo '</div>'; |
|
| 78 | - } |
|
| 79 | - } |
|
| 75 | + if ( $has_featured_image ) { |
|
| 76 | + echo '</div>'; |
|
| 77 | + echo '</div>'; |
|
| 78 | + } |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - // Item price. |
|
| 82 | - if ( 'price' === $column ) { |
|
| 81 | + // Item price. |
|
| 82 | + if ( 'price' === $column ) { |
|
| 83 | 83 | |
| 84 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 85 | - $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 86 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 84 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 85 | + $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 86 | + wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 87 | 87 | |
| 88 | - } |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - // Tax rate. |
|
| 91 | - if ( 'tax_rate' === $column ) { |
|
| 92 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 93 | - } |
|
| 90 | + // Tax rate. |
|
| 91 | + if ( 'tax_rate' === $column ) { |
|
| 92 | + echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - // Item quantity. |
|
| 96 | - if ( 'quantity' === $column ) { |
|
| 97 | - echo (float) $item->get_quantity(); |
|
| 98 | - } |
|
| 95 | + // Item quantity. |
|
| 96 | + if ( 'quantity' === $column ) { |
|
| 97 | + echo (float) $item->get_quantity(); |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - // Item sub total. |
|
| 101 | - if ( 'subtotal' === $column ) { |
|
| 102 | - $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 103 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 104 | - } |
|
| 100 | + // Item sub total. |
|
| 101 | + if ( 'subtotal' === $column ) { |
|
| 102 | + $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 103 | + wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - // Fires when printing a line item column. |
|
| 107 | - do_action( "getpaid_invoice_line_item_$column", $item, $invoice ); |
|
| 106 | + // Fires when printing a line item column. |
|
| 107 | + do_action( "getpaid_invoice_line_item_$column", $item, $invoice ); |
|
| 108 | 108 | |
| 109 | - // Fires after printing a line item column. |
|
| 110 | - do_action( "getpaid_invoice_line_item_after_$column", $item, $invoice ); |
|
| 109 | + // Fires after printing a line item column. |
|
| 110 | + do_action( "getpaid_invoice_line_item_after_$column", $item, $invoice ); |
|
| 111 | 111 | |
| 112 | - ?> |
|
| 112 | + ?> |
|
| 113 | 113 | |
| 114 | 114 | </div> |
| 115 | 115 | |
@@ -13,199 +13,199 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | class GetPaid_Tax { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * Calculates tax for a line item. |
|
| 18 | - * |
|
| 19 | - * @param float $price The price to calc tax on. |
|
| 20 | - * @param array $rates The rates to apply. |
|
| 21 | - * @param boolean $price_includes_tax Whether the passed price has taxes included. |
|
| 22 | - * @return array Array of tax name => tax amount. |
|
| 23 | - */ |
|
| 24 | - public static function calc_tax( $price, $rates, $price_includes_tax = false ) { |
|
| 25 | - |
|
| 26 | - if ( $price_includes_tax ) { |
|
| 27 | - $taxes = self::calc_inclusive_tax( $price, $rates ); |
|
| 28 | - } else { |
|
| 29 | - $taxes = self::calc_exclusive_tax( $price, $rates ); |
|
| 30 | - } |
|
| 31 | - |
|
| 32 | - return apply_filters( 'getpaid_calc_tax', $taxes, $price, $rates, $price_includes_tax ); |
|
| 33 | - |
|
| 34 | - } |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * Calc tax from inclusive price. |
|
| 38 | - * |
|
| 39 | - * @param float $price Price to calculate tax for. |
|
| 40 | - * @param array $rates Array of tax rates. |
|
| 41 | - * @return array |
|
| 42 | - */ |
|
| 43 | - public static function calc_inclusive_tax( $price, $rates ) { |
|
| 44 | - $taxes = array(); |
|
| 45 | - $tax_rates = wp_list_pluck( $rates, 'rate', 'name' ); |
|
| 46 | - |
|
| 47 | - // Add tax rates. |
|
| 48 | - $tax_rate = 1 + ( array_sum( $tax_rates ) / 100 ); |
|
| 49 | - |
|
| 50 | - foreach ( $tax_rates as $name => $rate ) { |
|
| 51 | - $the_rate = ( $rate / 100 ) / $tax_rate; |
|
| 52 | - $net_price = $price - ( $the_rate * $price ); |
|
| 53 | - $tax_amount = apply_filters( 'getpaid_price_inc_tax_amount', $price - $net_price, $name, $rate, $price ); |
|
| 54 | - $taxes[ $name ] = $tax_amount; |
|
| 55 | - } |
|
| 56 | - |
|
| 57 | - // Round all taxes to precision (4DP) before passing them back. |
|
| 58 | - $taxes = array_map( array( __CLASS__, 'round' ), $taxes ); |
|
| 59 | - |
|
| 60 | - return $taxes; |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Calc tax from exclusive price. |
|
| 65 | - * |
|
| 66 | - * @param float $price Price to calculate tax for. |
|
| 67 | - * @param array $rates Array of tax rates. |
|
| 68 | - * @return array |
|
| 69 | - */ |
|
| 70 | - public static function calc_exclusive_tax( $price, $rates ) { |
|
| 71 | - $taxes = array(); |
|
| 72 | - $tax_rates = wp_list_pluck( $rates, 'rate', 'name' ); |
|
| 73 | - |
|
| 74 | - foreach ( $tax_rates as $name => $rate ) { |
|
| 75 | - |
|
| 76 | - $tax_amount = $price * ( $rate / 100 ); |
|
| 77 | - $taxes[ $name ] = apply_filters( 'getpaid_price_ex_tax_amount', $tax_amount, $name, $rate, $price ); |
|
| 78 | - |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - // Round all taxes to precision (4DP) before passing them back. |
|
| 82 | - $taxes = array_map( array( __CLASS__, 'round' ), $taxes ); |
|
| 83 | - |
|
| 84 | - return $taxes; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * Get's an array of all tax rates. |
|
| 89 | - * |
|
| 90 | - * @return array |
|
| 91 | - */ |
|
| 92 | - public static function get_all_tax_rates() { |
|
| 93 | - |
|
| 94 | - $rates = get_option( 'wpinv_tax_rates', array() ); |
|
| 95 | - |
|
| 96 | - return apply_filters( |
|
| 97 | - 'getpaid_get_all_tax_rates', |
|
| 98 | - array_filter( wpinv_parse_list( $rates ) ) |
|
| 99 | - ); |
|
| 100 | - |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * Get's an array of default tax rates. |
|
| 105 | - * |
|
| 106 | - * @return array |
|
| 107 | - */ |
|
| 108 | - public static function get_default_tax_rates() { |
|
| 109 | - |
|
| 110 | - return apply_filters( |
|
| 111 | - 'getpaid_get_default_tax_rates', |
|
| 112 | - array( |
|
| 113 | - array( |
|
| 114 | - 'country' => wpinv_get_default_country(), |
|
| 115 | - 'state' => wpinv_get_default_state(), |
|
| 116 | - 'global' => true, |
|
| 117 | - 'rate' => wpinv_get_default_tax_rate(), |
|
| 118 | - 'name' => __( 'Base Tax', 'invoicing' ), |
|
| 119 | - ), |
|
| 120 | - ) |
|
| 121 | - ); |
|
| 122 | - |
|
| 123 | - } |
|
| 124 | - |
|
| 125 | - /** |
|
| 126 | - * Get's an array of all tax rules. |
|
| 127 | - * |
|
| 128 | - * @return array |
|
| 129 | - */ |
|
| 130 | - public static function get_all_tax_rules() { |
|
| 131 | - |
|
| 132 | - $rules = get_option( |
|
| 133 | - 'wpinv_tax_rules', |
|
| 134 | - array( |
|
| 135 | - array( |
|
| 136 | - 'key' => 'physical', |
|
| 137 | - 'label' => __( 'Physical Item', 'invoicing' ), |
|
| 138 | - 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 139 | - 'same_country_rule' => wpinv_get_option( 'vat_same_country_rule', 'vat_too' ), |
|
| 140 | - ), |
|
| 141 | - array( |
|
| 142 | - 'key' => 'digital', |
|
| 143 | - 'label' => __( 'Digital Item', 'invoicing' ), |
|
| 144 | - 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 145 | - 'same_country_rule' => wpinv_get_option( 'vat_same_country_rule', 'vat_too' ), |
|
| 146 | - ), |
|
| 147 | - ) |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - return apply_filters( |
|
| 151 | - 'getpaid_tax_rules', |
|
| 152 | - array_filter( array_values( wpinv_parse_list( $rules ) ) ) |
|
| 153 | - ); |
|
| 154 | - |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - /** |
|
| 158 | - * Get's an array of tax rates for a given address. |
|
| 159 | - * |
|
| 160 | - * @param string $country |
|
| 161 | - * @param string $state |
|
| 162 | - * @return array |
|
| 163 | - */ |
|
| 164 | - public static function get_address_tax_rates( $country, $state ) { |
|
| 165 | - |
|
| 166 | - $all_tax_rates = self::get_all_tax_rates(); |
|
| 167 | - $matching_rates = array_merge( |
|
| 168 | - wp_list_filter( $all_tax_rates, array( 'country' => $country ) ), |
|
| 169 | - wp_list_filter( $all_tax_rates, array( 'country' => '' ) ) |
|
| 170 | - ); |
|
| 171 | - |
|
| 172 | - foreach ( $matching_rates as $i => $rate ) { |
|
| 173 | - |
|
| 174 | - $states = array_filter( wpinv_clean( explode( ',', strtolower( $rate['state'] ) ) ) ); |
|
| 175 | - if ( empty( $rate['global'] ) && ! in_array( strtolower( $state ), $states ) ) { |
|
| 176 | - unset( $matching_rates[ $i ] ); |
|
| 177 | - } |
|
| 16 | + /** |
|
| 17 | + * Calculates tax for a line item. |
|
| 18 | + * |
|
| 19 | + * @param float $price The price to calc tax on. |
|
| 20 | + * @param array $rates The rates to apply. |
|
| 21 | + * @param boolean $price_includes_tax Whether the passed price has taxes included. |
|
| 22 | + * @return array Array of tax name => tax amount. |
|
| 23 | + */ |
|
| 24 | + public static function calc_tax( $price, $rates, $price_includes_tax = false ) { |
|
| 25 | + |
|
| 26 | + if ( $price_includes_tax ) { |
|
| 27 | + $taxes = self::calc_inclusive_tax( $price, $rates ); |
|
| 28 | + } else { |
|
| 29 | + $taxes = self::calc_exclusive_tax( $price, $rates ); |
|
| 30 | + } |
|
| 31 | + |
|
| 32 | + return apply_filters( 'getpaid_calc_tax', $taxes, $price, $rates, $price_includes_tax ); |
|
| 33 | + |
|
| 34 | + } |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * Calc tax from inclusive price. |
|
| 38 | + * |
|
| 39 | + * @param float $price Price to calculate tax for. |
|
| 40 | + * @param array $rates Array of tax rates. |
|
| 41 | + * @return array |
|
| 42 | + */ |
|
| 43 | + public static function calc_inclusive_tax( $price, $rates ) { |
|
| 44 | + $taxes = array(); |
|
| 45 | + $tax_rates = wp_list_pluck( $rates, 'rate', 'name' ); |
|
| 46 | + |
|
| 47 | + // Add tax rates. |
|
| 48 | + $tax_rate = 1 + ( array_sum( $tax_rates ) / 100 ); |
|
| 49 | + |
|
| 50 | + foreach ( $tax_rates as $name => $rate ) { |
|
| 51 | + $the_rate = ( $rate / 100 ) / $tax_rate; |
|
| 52 | + $net_price = $price - ( $the_rate * $price ); |
|
| 53 | + $tax_amount = apply_filters( 'getpaid_price_inc_tax_amount', $price - $net_price, $name, $rate, $price ); |
|
| 54 | + $taxes[ $name ] = $tax_amount; |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + // Round all taxes to precision (4DP) before passing them back. |
|
| 58 | + $taxes = array_map( array( __CLASS__, 'round' ), $taxes ); |
|
| 59 | + |
|
| 60 | + return $taxes; |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Calc tax from exclusive price. |
|
| 65 | + * |
|
| 66 | + * @param float $price Price to calculate tax for. |
|
| 67 | + * @param array $rates Array of tax rates. |
|
| 68 | + * @return array |
|
| 69 | + */ |
|
| 70 | + public static function calc_exclusive_tax( $price, $rates ) { |
|
| 71 | + $taxes = array(); |
|
| 72 | + $tax_rates = wp_list_pluck( $rates, 'rate', 'name' ); |
|
| 73 | + |
|
| 74 | + foreach ( $tax_rates as $name => $rate ) { |
|
| 75 | + |
|
| 76 | + $tax_amount = $price * ( $rate / 100 ); |
|
| 77 | + $taxes[ $name ] = apply_filters( 'getpaid_price_ex_tax_amount', $tax_amount, $name, $rate, $price ); |
|
| 78 | + |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + // Round all taxes to precision (4DP) before passing them back. |
|
| 82 | + $taxes = array_map( array( __CLASS__, 'round' ), $taxes ); |
|
| 83 | + |
|
| 84 | + return $taxes; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * Get's an array of all tax rates. |
|
| 89 | + * |
|
| 90 | + * @return array |
|
| 91 | + */ |
|
| 92 | + public static function get_all_tax_rates() { |
|
| 93 | + |
|
| 94 | + $rates = get_option( 'wpinv_tax_rates', array() ); |
|
| 95 | + |
|
| 96 | + return apply_filters( |
|
| 97 | + 'getpaid_get_all_tax_rates', |
|
| 98 | + array_filter( wpinv_parse_list( $rates ) ) |
|
| 99 | + ); |
|
| 100 | + |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * Get's an array of default tax rates. |
|
| 105 | + * |
|
| 106 | + * @return array |
|
| 107 | + */ |
|
| 108 | + public static function get_default_tax_rates() { |
|
| 109 | + |
|
| 110 | + return apply_filters( |
|
| 111 | + 'getpaid_get_default_tax_rates', |
|
| 112 | + array( |
|
| 113 | + array( |
|
| 114 | + 'country' => wpinv_get_default_country(), |
|
| 115 | + 'state' => wpinv_get_default_state(), |
|
| 116 | + 'global' => true, |
|
| 117 | + 'rate' => wpinv_get_default_tax_rate(), |
|
| 118 | + 'name' => __( 'Base Tax', 'invoicing' ), |
|
| 119 | + ), |
|
| 120 | + ) |
|
| 121 | + ); |
|
| 122 | + |
|
| 123 | + } |
|
| 124 | + |
|
| 125 | + /** |
|
| 126 | + * Get's an array of all tax rules. |
|
| 127 | + * |
|
| 128 | + * @return array |
|
| 129 | + */ |
|
| 130 | + public static function get_all_tax_rules() { |
|
| 131 | + |
|
| 132 | + $rules = get_option( |
|
| 133 | + 'wpinv_tax_rules', |
|
| 134 | + array( |
|
| 135 | + array( |
|
| 136 | + 'key' => 'physical', |
|
| 137 | + 'label' => __( 'Physical Item', 'invoicing' ), |
|
| 138 | + 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 139 | + 'same_country_rule' => wpinv_get_option( 'vat_same_country_rule', 'vat_too' ), |
|
| 140 | + ), |
|
| 141 | + array( |
|
| 142 | + 'key' => 'digital', |
|
| 143 | + 'label' => __( 'Digital Item', 'invoicing' ), |
|
| 144 | + 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 145 | + 'same_country_rule' => wpinv_get_option( 'vat_same_country_rule', 'vat_too' ), |
|
| 146 | + ), |
|
| 147 | + ) |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + return apply_filters( |
|
| 151 | + 'getpaid_tax_rules', |
|
| 152 | + array_filter( array_values( wpinv_parse_list( $rules ) ) ) |
|
| 153 | + ); |
|
| 154 | + |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + /** |
|
| 158 | + * Get's an array of tax rates for a given address. |
|
| 159 | + * |
|
| 160 | + * @param string $country |
|
| 161 | + * @param string $state |
|
| 162 | + * @return array |
|
| 163 | + */ |
|
| 164 | + public static function get_address_tax_rates( $country, $state ) { |
|
| 165 | + |
|
| 166 | + $all_tax_rates = self::get_all_tax_rates(); |
|
| 167 | + $matching_rates = array_merge( |
|
| 168 | + wp_list_filter( $all_tax_rates, array( 'country' => $country ) ), |
|
| 169 | + wp_list_filter( $all_tax_rates, array( 'country' => '' ) ) |
|
| 170 | + ); |
|
| 171 | + |
|
| 172 | + foreach ( $matching_rates as $i => $rate ) { |
|
| 173 | + |
|
| 174 | + $states = array_filter( wpinv_clean( explode( ',', strtolower( $rate['state'] ) ) ) ); |
|
| 175 | + if ( empty( $rate['global'] ) && ! in_array( strtolower( $state ), $states ) ) { |
|
| 176 | + unset( $matching_rates[ $i ] ); |
|
| 177 | + } |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - return apply_filters( 'getpaid_get_address_tax_rates', $matching_rates, $country, $state ); |
|
| 181 | - |
|
| 182 | - } |
|
| 183 | - |
|
| 184 | - /** |
|
| 185 | - * Sums a set of taxes to form a single total. Result is rounded to precision. |
|
| 186 | - * |
|
| 187 | - * @param array $taxes Array of taxes. |
|
| 188 | - * @return float |
|
| 189 | - */ |
|
| 190 | - public static function get_tax_total( $taxes ) { |
|
| 191 | - return self::round( array_sum( $taxes ) ); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Round to precision. |
|
| 196 | - * |
|
| 197 | - * Filter example: to return rounding to .5 cents you'd use: |
|
| 198 | - * |
|
| 199 | - * function euro_5cent_rounding( $in ) { |
|
| 200 | - * return round( $in / 5, 2 ) * 5; |
|
| 201 | - * } |
|
| 202 | - * add_filter( 'getpaid_tax_round', 'euro_5cent_rounding' ); |
|
| 203 | - * |
|
| 204 | - * @param float|int $in Value to round. |
|
| 205 | - * @return float |
|
| 206 | - */ |
|
| 207 | - public static function round( $in ) { |
|
| 208 | - return apply_filters( 'getpaid_tax_round', round( $in, 4 ), $in ); |
|
| 209 | - } |
|
| 180 | + return apply_filters( 'getpaid_get_address_tax_rates', $matching_rates, $country, $state ); |
|
| 181 | + |
|
| 182 | + } |
|
| 183 | + |
|
| 184 | + /** |
|
| 185 | + * Sums a set of taxes to form a single total. Result is rounded to precision. |
|
| 186 | + * |
|
| 187 | + * @param array $taxes Array of taxes. |
|
| 188 | + * @return float |
|
| 189 | + */ |
|
| 190 | + public static function get_tax_total( $taxes ) { |
|
| 191 | + return self::round( array_sum( $taxes ) ); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Round to precision. |
|
| 196 | + * |
|
| 197 | + * Filter example: to return rounding to .5 cents you'd use: |
|
| 198 | + * |
|
| 199 | + * function euro_5cent_rounding( $in ) { |
|
| 200 | + * return round( $in / 5, 2 ) * 5; |
|
| 201 | + * } |
|
| 202 | + * add_filter( 'getpaid_tax_round', 'euro_5cent_rounding' ); |
|
| 203 | + * |
|
| 204 | + * @param float|int $in Value to round. |
|
| 205 | + * @return float |
|
| 206 | + */ |
|
| 207 | + public static function round( $in ) { |
|
| 208 | + return apply_filters( 'getpaid_tax_round', round( $in, 4 ), $in ); |
|
| 209 | + } |
|
| 210 | 210 | |
| 211 | 211 | } |
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | $dummy_rule = array( |
| 10 | 10 | 'key' => 'TAX_RULE_KEY', |
| 11 | - 'label' => __( 'New Tax Rule', 'invoicing' ), |
|
| 12 | - 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 11 | + 'label' => __( 'New Tax Rule', 'invoicing' ), |
|
| 12 | + 'tax_base' => wpinv_get_option( 'tax_base', 'billing' ), |
|
| 13 | 13 | 'same_country_rule' => wpinv_get_option( 'vat_same_country_rule', 'vat_too' ), |
| 14 | 14 | ); |
| 15 | 15 | |
@@ -34,11 +34,11 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | function wpinv_get_capability( $capalibilty = 'manage_invoicing' ) { |
| 36 | 36 | |
| 37 | - if ( current_user_can( 'manage_options' ) ) { |
|
| 38 | - return 'manage_options'; |
|
| 39 | - }; |
|
| 37 | + if ( current_user_can( 'manage_options' ) ) { |
|
| 38 | + return 'manage_options'; |
|
| 39 | + }; |
|
| 40 | 40 | |
| 41 | - return $capalibilty; |
|
| 41 | + return $capalibilty; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -62,10 +62,10 @@ discard block |
||
| 62 | 62 | // Prepare user values. |
| 63 | 63 | $prefix = preg_replace( '/\s+/', '', $prefix ); |
| 64 | 64 | $prefix = empty( $prefix ) ? $email : $prefix; |
| 65 | - $args = array( |
|
| 66 | - 'user_login' => wpinv_generate_user_name( $prefix ), |
|
| 67 | - 'user_pass' => wp_generate_password(), |
|
| 68 | - 'user_email' => $email, |
|
| 65 | + $args = array( |
|
| 66 | + 'user_login' => wpinv_generate_user_name( $prefix ), |
|
| 67 | + 'user_pass' => wp_generate_password(), |
|
| 68 | + 'user_email' => $email, |
|
| 69 | 69 | 'role' => 'subscriber', |
| 70 | 70 | ); |
| 71 | 71 | |
@@ -82,16 +82,16 @@ discard block |
||
| 82 | 82 | function wpinv_generate_user_name( $prefix = '' ) { |
| 83 | 83 | |
| 84 | 84 | // If prefix is an email, retrieve the part before the email. |
| 85 | - $prefix = strtok( $prefix, '@' ); |
|
| 85 | + $prefix = strtok( $prefix, '@' ); |
|
| 86 | 86 | $prefix = trim( $prefix, '.' ); |
| 87 | 87 | |
| 88 | - // Sanitize the username. |
|
| 89 | - $prefix = sanitize_user( $prefix, true ); |
|
| 88 | + // Sanitize the username. |
|
| 89 | + $prefix = sanitize_user( $prefix, true ); |
|
| 90 | 90 | |
| 91 | - $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
|
| 92 | - if ( empty( $prefix ) || in_array( strtolower( $prefix ), array_map( 'strtolower', $illegal_logins ), true ) ) { |
|
| 93 | - $prefix = 'gtp_' . zeroise( wp_rand( 0, 9999 ), 4 ); |
|
| 94 | - } |
|
| 91 | + $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
|
| 92 | + if ( empty( $prefix ) || in_array( strtolower( $prefix ), array_map( 'strtolower', $illegal_logins ), true ) ) { |
|
| 93 | + $prefix = 'gtp_' . zeroise( wp_rand( 0, 9999 ), 4 ); |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | 96 | $username = $prefix; |
| 97 | 97 | $postfix = 2; |
@@ -220,43 +220,43 @@ discard block |
||
| 220 | 220 | |
| 221 | 221 | foreach ( getpaid_user_address_fields() as $key => $label ) { |
| 222 | 222 | |
| 223 | - // Display the country. |
|
| 224 | - if ( 'country' == $key ) { |
|
| 225 | - |
|
| 226 | - aui()->select( |
|
| 227 | - array( |
|
| 228 | - 'options' => wpinv_get_country_list(), |
|
| 229 | - 'name' => 'getpaid_address[' . esc_attr( $key ) . ']', |
|
| 230 | - 'id' => 'wpinv-' . sanitize_html_class( $key ), |
|
| 231 | - 'value' => sanitize_text_field( getpaid_get_user_address_field( get_current_user_id(), $key ) ), |
|
| 232 | - 'placeholder' => $label, |
|
| 233 | - 'label' => wp_kses_post( $label ), |
|
| 234 | - 'label_type' => 'vertical', |
|
| 235 | - 'class' => 'getpaid-address-field', |
|
| 223 | + // Display the country. |
|
| 224 | + if ( 'country' == $key ) { |
|
| 225 | + |
|
| 226 | + aui()->select( |
|
| 227 | + array( |
|
| 228 | + 'options' => wpinv_get_country_list(), |
|
| 229 | + 'name' => 'getpaid_address[' . esc_attr( $key ) . ']', |
|
| 230 | + 'id' => 'wpinv-' . sanitize_html_class( $key ), |
|
| 231 | + 'value' => sanitize_text_field( getpaid_get_user_address_field( get_current_user_id(), $key ) ), |
|
| 232 | + 'placeholder' => $label, |
|
| 233 | + 'label' => wp_kses_post( $label ), |
|
| 234 | + 'label_type' => 'vertical', |
|
| 235 | + 'class' => 'getpaid-address-field', |
|
| 236 | 236 | ), |
| 237 | 237 | true |
| 238 | - ); |
|
| 239 | - |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - // Display the state. |
|
| 243 | - elseif ( 'state' == $key ) { |
|
| 244 | - |
|
| 245 | - getpaid_get_states_select_markup( |
|
| 246 | - getpaid_get_user_address_field( get_current_user_id(), 'country' ), |
|
| 247 | - getpaid_get_user_address_field( get_current_user_id(), 'state' ), |
|
| 248 | - $label, |
|
| 249 | - $label, |
|
| 250 | - '', |
|
| 251 | - false, |
|
| 252 | - '', |
|
| 253 | - 'getpaid_address[' . esc_attr( $key ) . ']', |
|
| 238 | + ); |
|
| 239 | + |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + // Display the state. |
|
| 243 | + elseif ( 'state' == $key ) { |
|
| 244 | + |
|
| 245 | + getpaid_get_states_select_markup( |
|
| 246 | + getpaid_get_user_address_field( get_current_user_id(), 'country' ), |
|
| 247 | + getpaid_get_user_address_field( get_current_user_id(), 'state' ), |
|
| 248 | + $label, |
|
| 249 | + $label, |
|
| 250 | + '', |
|
| 251 | + false, |
|
| 252 | + '', |
|
| 253 | + 'getpaid_address[' . esc_attr( $key ) . ']', |
|
| 254 | 254 | true |
| 255 | - ); |
|
| 255 | + ); |
|
| 256 | 256 | |
| 257 | 257 | } else { |
| 258 | 258 | |
| 259 | - aui()->input( |
|
| 259 | + aui()->input( |
|
| 260 | 260 | array( |
| 261 | 261 | 'name' => 'getpaid_address[' . esc_attr( $key ) . ']', |
| 262 | 262 | 'id' => 'wpinv-' . sanitize_html_class( $key ), |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | 'class' => 'getpaid-address-field', |
| 269 | 269 | ), |
| 270 | 270 | true |
| 271 | - ); |
|
| 271 | + ); |
|
| 272 | 272 | |
| 273 | 273 | } |
| 274 | 274 | } |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | function getpaid_allowed_html() { |
| 408 | 408 | $allowed_html = wp_kses_allowed_html( 'post' ); |
| 409 | 409 | |
| 410 | - // form fields |
|
| 410 | + // form fields |
|
| 411 | 411 | $allowed_html['form'] = array( |
| 412 | 412 | 'action' => true, |
| 413 | 413 | 'accept' => true, |
@@ -419,12 +419,12 @@ discard block |
||
| 419 | 419 | ); |
| 420 | 420 | |
| 421 | 421 | // - input |
| 422 | - $allowed_html['input'] = array( |
|
| 423 | - 'class' => array(), |
|
| 424 | - 'id' => array(), |
|
| 425 | - 'name' => array(), |
|
| 426 | - 'value' => array(), |
|
| 427 | - 'type' => array(), |
|
| 422 | + $allowed_html['input'] = array( |
|
| 423 | + 'class' => array(), |
|
| 424 | + 'id' => array(), |
|
| 425 | + 'name' => array(), |
|
| 426 | + 'value' => array(), |
|
| 427 | + 'type' => array(), |
|
| 428 | 428 | 'placeholder' => array(), |
| 429 | 429 | 'autocomplete' => array(), |
| 430 | 430 | 'autofocus' => array(), |
@@ -438,33 +438,33 @@ discard block |
||
| 438 | 438 | 'max' => array(), |
| 439 | 439 | 'step' => array(), |
| 440 | 440 | 'size' => array(), |
| 441 | - ); |
|
| 441 | + ); |
|
| 442 | 442 | |
| 443 | 443 | // - input |
| 444 | - $allowed_html['textarea'] = array( |
|
| 445 | - 'class' => array(), |
|
| 446 | - 'id' => array(), |
|
| 447 | - 'name' => array(), |
|
| 448 | - 'value' => array(), |
|
| 449 | - ); |
|
| 450 | - |
|
| 451 | - // select |
|
| 452 | - $allowed_html['select'] = array( |
|
| 453 | - 'class' => array(), |
|
| 454 | - 'id' => array(), |
|
| 455 | - 'name' => array(), |
|
| 444 | + $allowed_html['textarea'] = array( |
|
| 445 | + 'class' => array(), |
|
| 446 | + 'id' => array(), |
|
| 447 | + 'name' => array(), |
|
| 448 | + 'value' => array(), |
|
| 449 | + ); |
|
| 450 | + |
|
| 451 | + // select |
|
| 452 | + $allowed_html['select'] = array( |
|
| 453 | + 'class' => array(), |
|
| 454 | + 'id' => array(), |
|
| 455 | + 'name' => array(), |
|
| 456 | 456 | 'autocomplete' => array(), |
| 457 | 457 | 'multiple' => array(), |
| 458 | - ); |
|
| 458 | + ); |
|
| 459 | 459 | |
| 460 | - // select options |
|
| 461 | - $allowed_html['option'] = array( |
|
| 462 | - 'selected' => array(), |
|
| 460 | + // select options |
|
| 461 | + $allowed_html['option'] = array( |
|
| 462 | + 'selected' => array(), |
|
| 463 | 463 | 'disabled' => array(), |
| 464 | 464 | 'value' => array(), |
| 465 | - ); |
|
| 465 | + ); |
|
| 466 | 466 | |
| 467 | - return $allowed_html; |
|
| 467 | + return $allowed_html; |
|
| 468 | 468 | |
| 469 | 469 | } |
| 470 | 470 | |