. * * @category Action * @package StatusNet * @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('STATUSNET') && !defined('LACONICA')) { exit(1); } class PoweredByStatusNetPlugin extends Plugin { function onEndAddressData($action) { $action->elementStart('span', 'poweredby'); $action->text(_('powered by')); $action->element('a', array('href' => 'http://status.net/'), 'StatusNet'); $action->elementEnd('span'); return true; } }