12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /* For licensing terms, see /license.txt */
- namespace Application\Migrations\Schema\V111;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- /**
- * Class Version20160302133200
- */
- class Version20160302133200 extends AbstractMigrationChamilo
- {
- /**
- * @param Schema $schema
- *
- * @throws \Doctrine\DBAL\Schema\SchemaException
- */
- public function up(Schema $schema)
- {
- $allowSendPushNotification = $this->getConfigurationValue('messaging_allow_send_push_notification');
- $this->addSettingCurrent(
- 'messaging_allow_send_push_notification',
- null,
- 'radio',
- 'WebServices',
- ($allowSendPushNotification ? 'true' : 'false'),
- 'MessagingAllowSendPushNotificationTitle',
- 'MessagingAllowSendPushNotificationComment',
- null,
- '',
- 1,
- true,
- false,
- [
- ['value' => 'true', 'text' => 'Yes'],
- ['value' => 'false', 'text' => 'No'],
- ]
- );
- $gdcProjectNumber = $this->getConfigurationValue('messaging_gdc_project_number');
- $this->addSettingCurrent(
- 'messaging_gdc_project_number',
- null,
- 'textfield',
- 'WebServices',
- !empty($gdcProjectNumber) ? $gdcProjectNumber : '',
- 'MessagingGDCProjectNumberTitle',
- 'MessagingGDCProjectNumberComment',
- null,
- '',
- 1,
- true,
- false
- );
- $gdcApiKey = $this->getConfigurationValue('messaging_gdc_api_key');
- $this->addSettingCurrent(
- 'messaging_gdc_api_key',
- null,
- 'textfield',
- 'WebServices',
- !empty($gdcApiKey) ? $gdcApiKey : '',
- 'MessagingGDCApiKeyTitle',
- 'MessagingGDCApiKeyComment',
- null,
- '',
- 1,
- true,
- false
- );
- }
- /**
- * @param Schema $schema
- */
- public function down(Schema $schema)
- {
-
- }
- }
|