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