Blog.php 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services;
  10. /**
  11. * Blog. 博客部分功能,未做。
  12. * @author Terry Zhao <2358269014@qq.com>
  13. * @since 1.0
  14. */
  15. class Blog extends Service
  16. {
  17. protected function actionGetCategoryMenu()
  18. {
  19. }
  20. protected function actionGetArticleList()
  21. {
  22. }
  23. protected function actionGetCategoryArticleList()
  24. {
  25. }
  26. protected function actionGetArticleById()
  27. {
  28. }
  29. protected function actionSaveArticle()
  30. {
  31. }
  32. protected function actionDeleteArticle()
  33. {
  34. }
  35. protected function actionSaveCategory()
  36. {
  37. }
  38. protected function actionDeleteCategory()
  39. {
  40. }
  41. protected function actionGetCategoryById()
  42. {
  43. }
  44. }