2010-09-25 01:22:44 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class YammerAuthVerifyForm extends Form
|
|
|
|
{
|
2010-09-27 20:24:10 +01:00
|
|
|
private $runner;
|
2010-09-25 01:22:44 +01:00
|
|
|
|
2010-09-27 20:24:10 +01:00
|
|
|
function __construct($out, YammerRunner $runner)
|
2010-09-25 01:22:44 +01:00
|
|
|
{
|
|
|
|
parent::__construct($out);
|
2010-09-27 20:24:10 +01:00
|
|
|
$this->runner = $runner;
|
2010-09-25 01:22:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID of the form
|
|
|
|
*
|
|
|
|
* @return int ID of the form
|
|
|
|
*/
|
|
|
|
|
|
|
|
function id()
|
|
|
|
{
|
|
|
|
return 'yammer-auth-verify-form';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* class of the form
|
|
|
|
*
|
|
|
|
* @return string of the form class
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formClass()
|
|
|
|
{
|
|
|
|
return 'form_yammer_auth_verify';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
|
|
|
$this->out->element('legend', null, _m('Connect to Yammer'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data elements of the form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formData()
|
|
|
|
{
|
2010-09-27 20:24:10 +01:00
|
|
|
$this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below..."));
|
|
|
|
$this->out->element('iframe', array('id' => 'yammer-oauth',
|
|
|
|
'src' => $this->runner->getAuthUrl()));
|
2010-09-25 01:22:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formActions()
|
|
|
|
{
|
|
|
|
$this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code'));
|
|
|
|
}
|
|
|
|
}
|