forked from fecshop/yii2_fecshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlog.php
55 lines (44 loc) · 864 Bytes
/
Blog.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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 <[email protected]>
* @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()
{
}
}