Cms.php 685 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * FecShop file.
  4. * @link http://www.fecshop.com/
  5. * @copyright Copyright (c) 2016 FecShop Software LLC
  6. * @license http://www.fecshop.com/license/
  7. */
  8. return [
  9. 'cms' => [
  10. 'class' => 'fecshop\services\Cms',
  11. // 子服务
  12. 'childService' => [
  13. 'article' => [
  14. 'class' => 'fecshop\services\cms\Article',
  15. 'storage' => 'ArticleMysqldb', // ArticleMysqldb or ArticleMongodb.
  16. ],
  17. 'staticblock' => [
  18. 'class' => 'fecshop\services\cms\StaticBlock',
  19. 'storage' => 'StaticBlockMongodb', // mysqldb or mongodb.
  20. ],
  21. ],
  22. ],
  23. ];