123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © 2016 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Api;
- interface PostManagementInterface extends ManagementInterface
- {
- /**
- * Retrieve list of post by page type, term, store, etc
- *
- * @param string $type
- * @param string $term
- * @param int $storeId
- * @param int $page
- * @param int $limit
- * @return bool
- */
- public function getList($type, $term, $storeId, $page, $limit);
- }
|