X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsection.php;h=2d8d6f3673f50233ec266a964f22ea8a27297f45;hb=360492472c7f5424670b01541ebc4ddc87ff27e3;hp=d64095a3eb2be146633dd0e8022485075cb8cc66;hpb=e6211c4c22eae51d78142056180f7b9e706179e4;p=quix0rs-gnu-social.git diff --git a/lib/section.php b/lib/section.php index d64095a3eb..2d8d6f3673 100644 --- a/lib/section.php +++ b/lib/section.php @@ -1,6 +1,6 @@ . * * @category Widget - * @package Laconica - * @author Evan Prodromou - * @copyright 2009 Control Yourself, Inc. + * @package StatusNet + * @author Evan Prodromou + * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ -if (!defined('LACONICA')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } @@ -40,12 +40,11 @@ require_once INSTALLDIR.'/lib/widget.php'; * group, or site. * * @category Widget - * @package Laconica - * @author Evan Prodromou + * @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://laconi.ca/ + * @link http://status.net/ */ - class Section extends Widget { /** @@ -56,27 +55,43 @@ class Section extends Widget * @return void * @see Widget::show() */ - function show() { $this->out->elementStart('div', array('id' => $this->divId(), 'class' => 'section')); - $this->out->element('h2', null, - $this->title()); + $this->showTitle(); $have_more = $this->showContent(); if ($have_more) { - $this->elementStart('p'); - $this->element('a', array('href' => $this->moreUrl(), - 'class' => 'more'), - $this->moreTitle()); - $this->elementEnd('p'); + $this->showMore(); + } + + $this->out->elementEnd('div'); + } + + function showTitle() + { + $link = $this->link(); + if (!empty($link)) { + $this->out->elementStart('h2'); + $this->out->element('a', array('href' => $link), $this->title()); + $this->out->elementEnd('h2'); + } else { + $this->out->element('h2', null, + $this->title()); } + } - $this->elementEnd('div'); + function showMore() + { + $this->out->elementStart('p'); + $this->out->element('a', array('href' => $this->moreUrl(), + 'class' => 'more'), + $this->moreTitle()); + $this->out->elementEnd('p'); } function divId() @@ -86,12 +101,19 @@ class Section extends Widget function title() { + // TRANS: Default title for section/sidebar widget. return _('Untitled section'); } + function link() + { + return null; + } + function showContent() { $this->out->element('p', null, + // TRANS: Default content for section/sidebar widget. _('(None)')); return false; } @@ -103,6 +125,7 @@ class Section extends Widget function moreTitle() { - return null; + // TRANS: Default "More..." title for section/sidebar widget. + return _('More...'); } }