actions-abstract
2 years ago
assets
2 years ago
db-models
2 years ago
export
2 years ago
legacy
2 years ago
meta-boxes
2 years ago
pages
2 years ago
paypal
2 years ago
query-views
2 years ago
rest-api
2 years ago
scenarios-abstract
2 years ago
tab-handlers
2 years ago
table-views
2 years ago
base-gateway-action.php
2 years ago
base-gateway.php
2 years ago
base-scenario-gateway.php
2 years ago
gateways-editor-data.php
2 years ago
legacy-base-gateway.php
2 years ago
migrate-legacy-data.php
2 years ago
module.php
2 years ago
scenario-item.php
2 years ago
scenario-item.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways; |
| 5 | |
| 6 | use JFB_Components\Repository\Repository_Static_Item_It; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Scenario_Item extends Repository_Static_Item_It { |
| 14 | |
| 15 | public static function scenario_id(); |
| 16 | |
| 17 | } |
| 18 |