Cms.php 539 B

123456789101112131415161718192021222324252627
  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. * @property \fecshop\services\customer\Article $article
  12. * @property \fecshop\services\customer\StaticBlock $staticblock
  13. *
  14. * Cms services.
  15. * @author Terry Zhao <2358269014@qq.com>
  16. * @since 1.0
  17. */
  18. class Cms extends Service
  19. {
  20. /**
  21. * cms storage db, you can set value: mysqldb,mongodb.
  22. */
  23. public $storage = 'mysqldb';
  24. }