2010-09-25 01:22:44 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class YammerAuthInitForm extends Form
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* ID of the form
|
|
|
|
*
|
|
|
|
* @return int ID of the form
|
|
|
|
*/
|
|
|
|
|
|
|
|
function id()
|
|
|
|
{
|
|
|
|
return 'yammer-auth-init-form';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* class of the form
|
|
|
|
*
|
|
|
|
* @return string of the form class
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formClass()
|
|
|
|
{
|
2010-09-28 00:56:48 +01:00
|
|
|
return 'form_yammer_auth_init form_settings';
|
2010-09-25 01:22:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action of the form
|
|
|
|
*
|
|
|
|
* @return string URL of the action
|
|
|
|
*/
|
|
|
|
|
|
|
|
function action()
|
|
|
|
{
|
|
|
|
return common_local_url('yammeradminpanel');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Legend of the Form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formLegend()
|
|
|
|
{
|
2011-06-19 14:02:31 +01:00
|
|
|
// TRANS: Form legend.
|
2010-09-25 01:22:44 +01:00
|
|
|
$this->out->element('legend', null, _m('Connect to Yammer'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data elements of the form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formData()
|
|
|
|
{
|
2010-09-28 00:56:48 +01:00
|
|
|
$this->out->hidden('subaction', 'authinit');
|
|
|
|
|
|
|
|
$this->out->elementStart('fieldset');
|
2011-06-19 14:02:31 +01:00
|
|
|
// TRANS: Button text for starting Yammer authentication.
|
|
|
|
$this->out->submit('submit', _m('BUTTON','Start authentication'),
|
|
|
|
// TRANS: Button title for starting Yammer authentication.
|
|
|
|
'submit', null, _m('Request authorization to connect to a Yammer account.'));
|
|
|
|
// TRANS: Button text for starting changing a Yammer API key.
|
|
|
|
$this->out->submit('change-apikey', _m('BUTTON','Change API key'));
|
2010-09-28 00:56:48 +01:00
|
|
|
$this->out->elementEnd('fieldset');
|
2010-09-25 01:22:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formActions()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|