X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Finvitebuttonsection.php;h=3d385f02a59d215163993b33b6d3d1f3dd24c6b9;hb=08dba7e21d10c71d81f7781490566f62156230f4;hp=8bf450b9912b42aa0ccfcbbbc3cb2a901a935e94;hpb=41dc9ca497dd065d72440cb2c706038f191a2c0c;p=quix0rs-gnu-social.git diff --git a/lib/invitebuttonsection.php b/lib/invitebuttonsection.php index 8bf450b991..3d385f02a5 100644 --- a/lib/invitebuttonsection.php +++ b/lib/invitebuttonsection.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Section for an invite button - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,9 +44,21 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class InviteButtonSection extends Section { + protected $buttonText; + + function __construct($out = null, $buttonText = null) + { + $this->out = $out; + if (empty($buttonText)) { + // TRANS: Default button text for inviting more users to the StatusNet instance. + $this->buttonText = _m('BUTTON', 'Invite more colleagues'); + } else { + $this->buttonText = $buttonText; + } + } + function showTitle() { return false; @@ -54,9 +66,14 @@ class InviteButtonSection extends Section function showContent() { - $this->out->element('a', - array('href' => common_local_url('invite')), - _('Invite more colleagues')); + $this->out->element( + 'a', + array( + 'href' => common_local_url('invite'), + 'class' => 'invite_button' + ), + $this->buttonText + ); return false; } -} \ No newline at end of file +}