Index: trunk/extensions/Distribution/api/ApiQueryExtensions.php |
— | — | @@ -27,14 +27,27 @@ |
28 | 28 | /** |
29 | 29 | * API class for the querieng of extensions in the repository. |
30 | 30 | * |
| 31 | + * @since 0.1 |
| 32 | + * |
31 | 33 | * @ingroup Distribution |
32 | 34 | */ |
33 | 35 | class ApiQueryExtensions extends ApiQueryBase { |
| 36 | + |
| 37 | + /** |
| 38 | + * Constructor. |
| 39 | + * |
| 40 | + * @since 0.1 |
| 41 | + * |
| 42 | + * @param $main |
| 43 | + * @param $action |
| 44 | + */ |
34 | 45 | public function __construct( $main, $action ) { |
35 | 46 | parent :: __construct( $main, $action, 'dst' ); |
36 | 47 | } |
37 | 48 | |
38 | 49 | /** |
| 50 | + * Main method. |
| 51 | + * |
39 | 52 | * @since 0.1 |
40 | 53 | */ |
41 | 54 | public function execute() { |
Index: trunk/extensions/Distribution/api/ApiPackage.php |
— | — | @@ -26,9 +26,26 @@ |
27 | 27 | |
28 | 28 | /** |
29 | 29 | * |
| 30 | + * @since 0.1 |
30 | 31 | * |
31 | 32 | * @ingroup Distribution |
32 | 33 | */ |
33 | | -class ApiPackage extends ApiQueryBase { |
| 34 | +class ApiPackage extends ApiBase { |
34 | 35 | |
| 36 | + /** |
| 37 | + * Main method. |
| 38 | + * |
| 39 | + * @since 0.1 |
| 40 | + */ |
| 41 | + public function execute() { |
| 42 | + |
| 43 | + } |
| 44 | + |
| 45 | + /** |
| 46 | + * @since 0.1 |
| 47 | + */ |
| 48 | + public function getVersion() { |
| 49 | + return __CLASS__ . ': $Id$'; |
| 50 | + } |
| 51 | + |
35 | 52 | } |
\ No newline at end of file |
Index: trunk/extensions/Distribution/api/ApiExtension.php |
— | — | @@ -26,9 +26,26 @@ |
27 | 27 | |
28 | 28 | /** |
29 | 29 | * |
| 30 | + * @since 0.1 |
30 | 31 | * |
31 | 32 | * @ingroup Distribution |
32 | 33 | */ |
33 | | -class ApiExtension extends ApiQueryBase { |
| 34 | +class ApiExtension extends ApiBase { |
34 | 35 | |
| 36 | + /** |
| 37 | + * Main method. |
| 38 | + * |
| 39 | + * @since 0.1 |
| 40 | + */ |
| 41 | + public function execute() { |
| 42 | + |
| 43 | + } |
| 44 | + |
| 45 | + /** |
| 46 | + * @since 0.1 |
| 47 | + */ |
| 48 | + public function getVersion() { |
| 49 | + return __CLASS__ . ': $Id$'; |
| 50 | + } |
| 51 | + |
35 | 52 | } |
\ No newline at end of file |