admin-warning.php
2 years ago
customizer.css
5 years ago
customizer.js
2 years ago
form.php
2 years ago
style.css
8 years ago
widget.php
2 years ago
form.php
235 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Display the Pay with PayPal Form. |
| 4 | * |
| 5 | * @html-template Jetpack_Simple_Payments_Widget::form |
| 6 | * @package automattic/jetpack |
| 7 | */ |
| 8 | |
| 9 | // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- HTML template, let Phan handle it. |
| 10 | |
| 11 | ?> |
| 12 | <p> |
| 13 | <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"> |
| 14 | <?php esc_html_e( 'Widget Title', 'jetpack' ); ?> |
| 15 | </label> |
| 16 | <input |
| 17 | type="text" |
| 18 | class="widefat jetpack-simple-payments-widget-title" |
| 19 | id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" |
| 20 | name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" |
| 21 | value="<?php echo esc_attr( $instance['title'] ); ?>" /> |
| 22 | </p> |
| 23 | <p class="jetpack-simple-payments-products-fieldset" |
| 24 | <?php |
| 25 | if ( empty( $product_posts ) ) { |
| 26 | echo 'style="display:none;"'; |
| 27 | } |
| 28 | ?> |
| 29 | > |
| 30 | <label for="<?php echo esc_attr( $this->get_field_id( 'product_post_id' ) ); ?>"> |
| 31 | <?php esc_html_e( 'Select a Pay with PayPal button:', 'jetpack' ); ?> |
| 32 | </label> |
| 33 | <select |
| 34 | class="widefat jetpack-simple-payments-products" |
| 35 | id="<?php echo esc_attr( $this->get_field_id( 'product_post_id' ) ); ?>" |
| 36 | name="<?php echo esc_attr( $this->get_field_name( 'product_post_id' ) ); ?>"> |
| 37 | <?php foreach ( $product_posts as $product_post ) { ?> |
| 38 | <option value="<?php echo (int) $product_post->ID; ?>" <?php selected( (int) $instance['product_post_id'], $product_post->ID ); ?>> |
| 39 | <?php echo esc_attr( get_the_title( $product_post ) ); ?> |
| 40 | </option> |
| 41 | <?php } ?> |
| 42 | </select> |
| 43 | </p> |
| 44 | <?php if ( is_customize_preview() ) { ?> |
| 45 | <p class="jetpack-simple-payments-products-warning" |
| 46 | <?php |
| 47 | if ( ! empty( $product_posts ) ) { |
| 48 | echo 'style="display:none;"'; |
| 49 | } |
| 50 | ?> |
| 51 | > |
| 52 | <?php esc_html_e( "Looks like you don't have any products. You can create one using the Add New button below.", 'jetpack' ); ?> |
| 53 | </p> |
| 54 | <p> |
| 55 | <div class="alignleft"> |
| 56 | <button class="button jetpack-simple-payments-edit-product" <?php disabled( empty( $product_posts ), true ); ?>> |
| 57 | <?php esc_html_e( 'Edit Selected', 'jetpack' ); ?> |
| 58 | </button> |
| 59 | </div> |
| 60 | <div class="alignright"> |
| 61 | <button class="button jetpack-simple-payments-add-product"><?php esc_html_e( 'Add New', 'jetpack' ); ?></button> |
| 62 | </div> |
| 63 | <br class="clear"> |
| 64 | </p> |
| 65 | <hr /> |
| 66 | <div class="jetpack-simple-payments-form" style="display: none;"> |
| 67 | <input |
| 68 | type="hidden" |
| 69 | id="<?php echo esc_attr( $this->get_field_id( 'form_action' ) ); ?>" |
| 70 | name="<?php echo esc_attr( $this->get_field_name( 'form_action' ) ); ?>" |
| 71 | value="<?php echo esc_attr( $instance['form_action'] ); ?>" |
| 72 | class="jetpack-simple-payments-form-action" /> |
| 73 | <input |
| 74 | type="hidden" |
| 75 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_id' ) ); ?>" |
| 76 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_id' ) ); ?>" |
| 77 | value="<?php echo esc_attr( $instance['form_product_id'] ); ?>" |
| 78 | class="jetpack-simple-payments-form-product-id" /> |
| 79 | <input |
| 80 | type="hidden" |
| 81 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_image_id' ) ); ?>" |
| 82 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_image_id' ) ); ?>" |
| 83 | value="<?php echo esc_attr( $instance['form_product_image_id'] ); ?>" |
| 84 | class="jetpack-simple-payments-form-image-id" /> |
| 85 | <input |
| 86 | type="hidden" |
| 87 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_image_src' ) ); ?>" |
| 88 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_image_src' ) ); ?>" |
| 89 | value="<?php echo esc_attr( $instance['form_product_image_src'] ); ?>" |
| 90 | class="jetpack-simple-payments-form-image-src" /> |
| 91 | <p> |
| 92 | <label for="<?php echo esc_attr( $this->get_field_id( 'form_product_title' ) ); ?>"> |
| 93 | <?php esc_html_e( 'What is this payment for?', 'jetpack' ); ?> |
| 94 | </label> |
| 95 | <input |
| 96 | type="text" |
| 97 | class="widefat field-title jetpack-simple-payments-form-product-title" |
| 98 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_title' ) ); ?>" |
| 99 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_title' ) ); ?>" |
| 100 | value="<?php echo esc_attr( $instance['form_product_title'] ); ?>" /> |
| 101 | <br /> |
| 102 | <small> |
| 103 | <?php esc_html_e( 'For example: event tickets, charitable donations, training courses, coaching fees, etc.', 'jetpack' ); ?> |
| 104 | </small> |
| 105 | </p> |
| 106 | <div class="jetpack-simple-payments-image-fieldset"> |
| 107 | <label><?php esc_html_e( 'Product image', 'jetpack' ); ?></label> |
| 108 | <div class="placeholder" |
| 109 | <?php |
| 110 | if ( ! empty( $instance['form_product_image_id'] ) ) { |
| 111 | echo 'style="display:none;"'; |
| 112 | } |
| 113 | ?> |
| 114 | > |
| 115 | <?php esc_html_e( 'Select an image', 'jetpack' ); ?> |
| 116 | </div> |
| 117 | <div class="jetpack-simple-payments-image" |
| 118 | <?php |
| 119 | if ( empty( $instance['form_product_image_id'] ) ) { |
| 120 | echo 'style="display:none;"'; |
| 121 | } |
| 122 | ?> |
| 123 | > |
| 124 | <img src="<?php echo esc_url( $instance['form_product_image_src'] ); ?>" /> |
| 125 | <button class="button jetpack-simple-payments-remove-image"><?php esc_html_e( 'Remove image', 'jetpack' ); ?></button> |
| 126 | </div> |
| 127 | </div> |
| 128 | <p> |
| 129 | <label for="<?php echo esc_attr( $this->get_field_id( 'form_product_description' ) ); ?>"> |
| 130 | <?php esc_html_e( 'Description', 'jetpack' ); ?> |
| 131 | </label> |
| 132 | <textarea |
| 133 | class="field-description widefat jetpack-simple-payments-form-product-description" |
| 134 | rows=5 |
| 135 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_description' ) ); ?>" |
| 136 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_description' ) ); ?>"><?php echo esc_textarea( $instance['form_product_description'] ); ?></textarea> |
| 137 | </p> |
| 138 | <p class="cost"> |
| 139 | <label for="<?php echo esc_attr( $this->get_field_id( 'form_product_price' ) ); ?>"> |
| 140 | <?php esc_html_e( 'Price', 'jetpack' ); ?> |
| 141 | </label> |
| 142 | <select |
| 143 | class="field-currency widefat jetpack-simple-payments-form-product-currency" |
| 144 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_currency' ) ); ?>" |
| 145 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_currency' ) ); ?>"> |
| 146 | <?php |
| 147 | foreach ( Jetpack_Simple_Payments_Widget::$supported_currency_list as $code => $currency ) { |
| 148 | ?> |
| 149 | <option value="<?php echo esc_attr( $code ); ?>"<?php selected( $instance['form_product_currency'], $code ); ?>> |
| 150 | <?php echo esc_html( "$code $currency" ); ?> |
| 151 | </option> |
| 152 | <?php } ?> |
| 153 | </select> |
| 154 | <input |
| 155 | type="text" |
| 156 | class="field-price widefat jetpack-simple-payments-form-product-price" |
| 157 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_price' ) ); ?>" |
| 158 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_price' ) ); ?>" |
| 159 | value="<?php echo esc_attr( $instance['form_product_price'] ); ?>" |
| 160 | placeholder="1.00" /> |
| 161 | </p> |
| 162 | <p> |
| 163 | <input |
| 164 | class="field-multiple jetpack-simple-payments-form-product-multiple" |
| 165 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_multiple' ) ); ?>" |
| 166 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_multiple' ) ); ?>" |
| 167 | type="checkbox" |
| 168 | value="1" |
| 169 | <?php checked( $instance['form_product_multiple'], '1' ); ?> /> |
| 170 | <label for="<?php echo esc_attr( $this->get_field_id( 'form_product_multiple' ) ); ?>"> |
| 171 | <?php esc_html_e( 'Allow people to buy more than one item at a time.', 'jetpack' ); ?> |
| 172 | </label> |
| 173 | </p> |
| 174 | <p> |
| 175 | <label for="<?php echo esc_attr( $this->get_field_id( 'form_product_email' ) ); ?>"> |
| 176 | <?php esc_html_e( 'Email', 'jetpack' ); ?> |
| 177 | </label> |
| 178 | <input |
| 179 | class="field-email widefat jetpack-simple-payments-form-product-email" |
| 180 | id="<?php echo esc_attr( $this->get_field_id( 'form_product_email' ) ); ?>" |
| 181 | name="<?php echo esc_attr( $this->get_field_name( 'form_product_email' ) ); ?>" |
| 182 | type="email" |
| 183 | value="<?php echo esc_attr( $instance['form_product_email'] ); ?>" /> |
| 184 | <small> |
| 185 | <?php |
| 186 | printf( |
| 187 | wp_kses( |
| 188 | /* Translators: placeholders are a link to Paypal website and a target attribute. */ |
| 189 | __( 'This is where PayPal will send your money. To claim a payment, you\'ll need a <a href="%1$s" %2$s>PayPal account</a> connected to a bank account.', 'jetpack' ), |
| 190 | array( |
| 191 | 'a' => array( |
| 192 | 'href' => array(), |
| 193 | 'target' => array(), |
| 194 | ), |
| 195 | ) |
| 196 | ), |
| 197 | 'https://paypal.com', |
| 198 | 'target="_blank"' |
| 199 | ); |
| 200 | ?> |
| 201 | </small> |
| 202 | </p> |
| 203 | <p> |
| 204 | <div class="alignleft"> |
| 205 | <button type="button" class="button-link button-link-delete jetpack-simple-payments-delete-product"> |
| 206 | <?php esc_html_e( 'Delete Product', 'jetpack' ); ?> |
| 207 | </button> |
| 208 | </div> |
| 209 | <div class="alignright"> |
| 210 | <button name="<?php echo esc_attr( $this->get_field_name( 'save' ) ); ?>" class="button jetpack-simple-payments-save-product"><?php esc_html_e( 'Save', 'jetpack' ); ?></button> |
| 211 | <span> | <button type="button" class="button-link jetpack-simple-payments-cancel-form"><?php esc_html_e( 'Cancel', 'jetpack' ); ?></button></span> |
| 212 | </div> |
| 213 | <br class="clear"> |
| 214 | </p> |
| 215 | <hr /> |
| 216 | </div> |
| 217 | <?php } else { ?> |
| 218 | <p class="jetpack-simple-payments-products-warning"> |
| 219 | <?php |
| 220 | printf( |
| 221 | wp_kses( |
| 222 | /* Translators: placeholder is a link to the customizer. */ |
| 223 | __( 'This widget adds a payment button of your choice to your sidebar. To create or edit the payment buttons themselves, <a href="%s">use the Customizer</a>.', 'jetpack' ), |
| 224 | array( |
| 225 | 'a' => array( |
| 226 | 'href' => array(), |
| 227 | ), |
| 228 | ) |
| 229 | ), |
| 230 | esc_url( add_query_arg( array( 'autofocus[panel]' => 'widgets' ), admin_url( 'customize.php' ) ) ) |
| 231 | ); |
| 232 | ?> |
| 233 | </p> |
| 234 | <?php } ?> |
| 235 |