forked from GNUsocial/gnu-social
8597856b56
Squashed commit of the following: commit 1c0766e8f9d9e962ec553e2fb35bd2f944ffb4b0 Author: Zach Copley <zach@status.net> Date: Mon May 9 17:00:51 2011 -0700 Make the invites from the fancier invite form save commit 9ea45b7cf38eda8dad1d82e87b3400413a532079 Author: Zach Copley <zach@status.net> Date: Fri May 6 16:14:40 2011 -0700 .js to let the user add (and remove) additional invitees from their domain commit b2a02339bd11d02c7cba24629dde359e22de32b6 Author: Zach Copley <zach@status.net> Date: Thu May 5 15:44:49 2011 -0700 Load special whitelist invite .js when loading the invite page commit 132fed7550b40cd1d46ee506fd83974a116bce32 Author: Zach Copley <zach@status.net> Date: Wed May 4 18:35:49 2011 -0700 Remove settings class from whitelist inviter form commit a38437351b505594aead5da86af9a5ed089666b6 Author: Zach Copley <zach@status.net> Date: Wed May 4 18:21:18 2011 -0700 Make a fancier form for whitelist domain invites commit 710d4f41edf412871a9c1fbf33af317226485325 Author: Zach Copley <zach@status.net> Date: Wed May 4 17:34:09 2011 -0700 Add some more events to the invitation page commit 2449e4e0c1bf11568968cfc3ea2d8e69db2d875e Author: Zach Copley <zach@status.net> Date: Wed May 4 17:12:36 2011 -0700 Refactor invite action a bit
185 lines
4.6 KiB
PHP
185 lines
4.6 KiB
PHP
<?php
|
|
/**
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
*
|
|
* Fancy form for inviting collegues
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @category Form
|
|
* @package StatusNet
|
|
* @author Zach Copley <zach@status.net>
|
|
* @copyright 2011 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')) {
|
|
exit(1);
|
|
}
|
|
|
|
require_once INSTALLDIR . '/lib/form.php';
|
|
|
|
/**
|
|
* Form for inviting collegues and friends
|
|
*
|
|
* @category Form
|
|
* @package StatusNet
|
|
* @author Zach Copley <zach@status.net>
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
* @link http://status.net/
|
|
*
|
|
*/
|
|
class WhitelistInviteForm extends Form
|
|
{
|
|
private $whitelist = null;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param Action $out output channel
|
|
*/
|
|
function __construct($out, $whitelist)
|
|
{
|
|
parent::__construct($out);
|
|
$this->whitelist = $whitelist;
|
|
}
|
|
|
|
/**
|
|
* ID of the form
|
|
*
|
|
* @return string ID of the form
|
|
*/
|
|
function id()
|
|
{
|
|
return 'form_invite';
|
|
}
|
|
|
|
/**
|
|
* Action of the form
|
|
*
|
|
* @return string URL of the action
|
|
*/
|
|
function action()
|
|
{
|
|
return common_local_url('invite');
|
|
}
|
|
|
|
/**
|
|
* Name of the form
|
|
*
|
|
* @return void
|
|
*/
|
|
function formLegend()
|
|
{
|
|
// TRANS: Form legend.
|
|
$this->out->element('legend', null, _('Invite collegues'));
|
|
}
|
|
|
|
/**
|
|
* Data elements of the form
|
|
*
|
|
* @return void
|
|
*/
|
|
function formData()
|
|
{
|
|
$this->out->elementStart('ul', 'form_data');
|
|
for ($i = 0; $i < 3; $i++) {
|
|
$this->showEmailLI();
|
|
}
|
|
$this->out->elementStart('li');
|
|
// TRANS: Field label for a personal message to send to invitees.
|
|
$this->out->textarea(
|
|
'personal', _('Personal message'),
|
|
$this->out->trimmed('personal'),
|
|
// TRANS: Tooltip for field label for a personal message to send to invitees.
|
|
_('Optionally add a personal message to the invitation.')
|
|
);
|
|
$this->out->elementEnd('li');
|
|
$this->out->elementEnd('ul');
|
|
}
|
|
|
|
function showEmailLI()
|
|
{
|
|
$this->out->elementStart('li');
|
|
$this->out->input('username[]', '');
|
|
$this->out->text('@');
|
|
if (count($this->whitelist) == 1) {
|
|
$this->out->element(
|
|
'span',
|
|
array('class' => 'email_invite'),
|
|
$this->whitelist[0]
|
|
);
|
|
$this->out->hidden('domain[]', $this->whitelist[0]);
|
|
} else {
|
|
$content = array();
|
|
foreach($this->whitelist as $domain) {
|
|
$content[$domain] = $domain;
|
|
}
|
|
$this->out->dropdown('domain[]', '', $content);
|
|
}
|
|
$this->showMultiControls();
|
|
$this->out->elementEnd('li');
|
|
}
|
|
|
|
function showMultiControls()
|
|
{
|
|
$this->out->element(
|
|
'a',
|
|
array(
|
|
'class' => 'remove_row',
|
|
'href' => 'javascript://',
|
|
),
|
|
'-'
|
|
);
|
|
|
|
$this->out->element(
|
|
'a',
|
|
array(
|
|
'class' => 'add_row',
|
|
'href' => 'javascript://',
|
|
),
|
|
'+'
|
|
);
|
|
}
|
|
|
|
function getUsersDomain()
|
|
{
|
|
$user = common_current_user();
|
|
|
|
assert(!empty($user));
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Action elements
|
|
*
|
|
* @return void
|
|
*/
|
|
function formActions()
|
|
{
|
|
// TRANS: Send button for inviting friends
|
|
$this->out->submit(
|
|
'send',
|
|
_m('BUTTON','Send'), 'submit form_action-primary',
|
|
// TRANS: Submit button title.
|
|
'send',
|
|
_('Send')
|
|
);
|
|
}
|
|
}
|