export-page.php
2 years ago
gateways-pages-trait.php
2 years ago
payments-page.php
2 years ago
print-page.php
2 years ago
single-payment-page.php
2 years ago
single-payment-print-page.php
2 years ago
gateways-pages-trait.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Pages; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | use Jet_Form_Builder\Exceptions\Repository_Exception; |
| 12 | use JFB_Modules\Gateways\Module; |
| 13 | |
| 14 | trait Gateways_Pages_Trait { |
| 15 | |
| 16 | /** |
| 17 | * @return string |
| 18 | * @throws Repository_Exception |
| 19 | */ |
| 20 | public function base_script_url(): string { |
| 21 | /** @var Module $module */ |
| 22 | $module = jet_form_builder()->module( 'gateways' ); |
| 23 | |
| 24 | return $module->get_url( "assets/build/admin/pages/{$this->slug()}.js" ); |
| 25 | } |
| 26 | |
| 27 | } |
| 28 |