Actualización
This commit is contained in:
88
plugin/lti_provider/src/Form/FrmAdd.php
Normal file
88
plugin/lti_provider/src/Form/FrmAdd.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
/* For licensing terms, see /license.txt */
|
||||
|
||||
namespace Chamilo\PluginBundle\LtiProvider\Form;
|
||||
|
||||
use Chamilo\PluginBundle\Entity\LtiProvider\Platform;
|
||||
use FormValidator;
|
||||
use LtiProviderPlugin;
|
||||
|
||||
/**
|
||||
* Class FrmAdd.
|
||||
*/
|
||||
class FrmAdd extends FormValidator
|
||||
{
|
||||
/**
|
||||
* @var Platform|null
|
||||
*/
|
||||
private $platform;
|
||||
|
||||
/**
|
||||
* FrmAdd constructor.
|
||||
*/
|
||||
public function __construct(
|
||||
string $name,
|
||||
array $attributes = [],
|
||||
Platform $platform = null
|
||||
) {
|
||||
parent::__construct($name, 'POST', '', '', $attributes, self::LAYOUT_HORIZONTAL);
|
||||
|
||||
$this->platform = $platform;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the form.
|
||||
*/
|
||||
public function build(): void
|
||||
{
|
||||
$plugin = LtiProviderPlugin::create();
|
||||
|
||||
$this->addHeader($plugin->get_lang('ConnectionDetails'));
|
||||
|
||||
$this->addText('issuer', $plugin->get_lang('PlatformName'));
|
||||
$this->addUrl('auth_login_url', $plugin->get_lang('AuthLoginUrl'));
|
||||
$this->addUrl('auth_token_url', $plugin->get_lang('AuthTokenUrl'));
|
||||
$this->addUrl('key_set_url', $plugin->get_lang('KeySetUrl'));
|
||||
$this->addText('client_id', $plugin->get_lang('ClientId'));
|
||||
$this->addText('deployment_id', $plugin->get_lang('DeploymentId'));
|
||||
$this->addText('kid', $plugin->get_lang('KeyId'), false);
|
||||
|
||||
$this->addRadio(
|
||||
'tool_type',
|
||||
get_lang('ToolProvider'),
|
||||
[
|
||||
'quiz' => $plugin->get_lang('Quizzes'),
|
||||
'lp' => $plugin->get_lang('Learnpaths'),
|
||||
],
|
||||
[
|
||||
'onclick' => 'selectToolProvider(this.value)',
|
||||
]
|
||||
);
|
||||
|
||||
$this->addElement('html', $plugin->getLearnPathsSelect());
|
||||
$this->addElement('html', $plugin->getQuizzesSelect());
|
||||
|
||||
$this->addButtonCreate($plugin->get_lang('AddPlatform'));
|
||||
$this->applyFilter('__ALL__', 'trim');
|
||||
}
|
||||
|
||||
public function setDefaultValues(): void
|
||||
{
|
||||
$defaults = [];
|
||||
|
||||
if (!$this->platform) {
|
||||
$this->platform = new Platform();
|
||||
}
|
||||
|
||||
$defaults['issuer'] = $this->platform->getIssuer();
|
||||
$defaults['auth_login_url'] = $this->platform->getAuthLoginUrl();
|
||||
$defaults['auth_token_url'] = $this->platform->getAuthTokenUrl();
|
||||
$defaults['key_set_url'] = $this->platform->getKeySetUrl();
|
||||
$defaults['client_id'] = $this->platform->getClientId();
|
||||
$defaults['deployment_id'] = $this->platform->getDeploymentId();
|
||||
$defaults['kid'] = $this->platform->getKid();
|
||||
$defaults['tool_type'] = 'quiz';
|
||||
|
||||
$this->setDefaults($defaults);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user