Example #1
0
 public function getBlockPage($key)
 {
     $content = '';
     $block = Kiwi::getBlock()->find()->where(['key' => $key, 'status' => 1])->one();
     if ($block) {
         $content = $block->content;
     }
     return $content;
 }
Example #2
0
 public function getModel()
 {
     return Kiwi::getBlock();
 }