예제 #1
0
파일: news.php 프로젝트: rii-J/concrete5-de
	public function __construct() {
		Loader::model('system_notification');
		$snl = new SystemNotificationList();
		$snl->setItemsPerPage(4);
		$notifications = $snl->getPage();
		$this->set('notifications', $notifications);
		$this->set('total', $snl->getTotal());
	}
예제 #2
0
	function view() {  
		$snl = new SystemNotificationList();
		$this->set('notifications', $snl->get());

	}