| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecshop\services;
- /**
- * Blog. 博客部分功能,未做。
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- class Blog extends Service
- {
- protected function actionGetCategoryMenu()
- {
- }
- protected function actionGetArticleList()
- {
- }
- protected function actionGetCategoryArticleList()
- {
- }
- protected function actionGetArticleById()
- {
- }
- protected function actionSaveArticle()
- {
- }
- protected function actionDeleteArticle()
- {
- }
- protected function actionSaveCategory()
- {
- }
- protected function actionDeleteCategory()
- {
- }
- protected function actionGetCategoryById()
- {
- }
- }
|