1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\cache;
-
-
- class CommunityArticleCache extends CacheBase
- {
-
- public function setTag()
- {
- return 'community_article';
- }
-
-
- public function setData()
- {
- if (!empty($this->extend['has_new'])) {
- return $this->extend['has_new'];
- }
-
- return [];
- }
-
- }
|