Content.php
7 years ago
Interface.php
7 years ago
Login.php
7 years ago
LoginRedirect.php
7 years ago
Interface.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * ====================================================================== |
| 5 | * LICENSE: This file is subject to the terms and conditions defined in * |
| 6 | * file 'license.txt', which is part of this source code package. * |
| 7 | * ====================================================================== |
| 8 | */ |
| 9 | |
| 10 | /** |
| 11 | * AAM shortcode strategy interface |
| 12 | * |
| 13 | * @package AAM |
| 14 | * @author Vasyl Martyniuk <vasyl@vasyltech.com> |
| 15 | */ |
| 16 | interface AAM_Shortcode_Strategy_Interface { |
| 17 | |
| 18 | /** |
| 19 | * Initialize shortcode strategy |
| 20 | * |
| 21 | * @param type $args |
| 22 | * @param type $content |
| 23 | */ |
| 24 | public function __construct($args, $content); |
| 25 | |
| 26 | /** |
| 27 | * Process strategy |
| 28 | */ |
| 29 | public function run(); |
| 30 | |
| 31 | } |