. * * @category UI * @package StatusNet * @author Evan Prodromou * @author Sarven Capadisli * @copyright 2008 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); } /** * widget for displaying a list of notices in the primary content area * * @category UI * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * @see Notice * @see NoticeListItem * @see ProfileNoticeList */ class PrimaryNoticeList extends NoticeList { public function show() { $this->out->elementStart('div', array('id' =>'notices_primary')); $total = parent::show(); $this->out->elementEnd('div'); return $total; } }