12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /* For licensing terms, see /license.txt */
- namespace Application\Migrations\Schema\V110;
- use Application\Migrations\AbstractMigrationChamilo;
- use Doctrine\DBAL\Schema\Schema;
- /**
- * Calendar color
- */
- class Version20150825141100 extends AbstractMigrationChamilo
- {
- /**
- * @param Schema $schema
- */
- public function up(Schema $schema)
- {
- $this->addSettingCurrent(
- 'show_full_skill_name_on_skill_wheel',
- null,
- 'radio',
- 'Platform',
- 'false',
- 'ShowFullSkillNameOnSkillWheelTitle',
- 'ShowFullSkillNameOnSkillWheelComment',
- null,
- null,
- 1,
- false,
- true,
- [
- ['value' => 'true', 'text' => 'Yes'],
- ['value' => 'false', 'text' => 'No']
- ]
- );
- }
- /**
- * @param Schema $schema
- */
- public function down(Schema $schema)
- {
- $entityManage = $this->getEntityManager();
- $deleteOptions = $entityManage->createQueryBuilder();
- $deleteSettings = $entityManage->createQueryBuilder();
- $deleteOptions->delete('ChamiloCoreBundle:SettingsOptions', 'o')
- ->andWhere(
- $deleteOptions->expr()->in(
- 'o.variable',
- ['show_full_skill_name_on_skill_wheel']
- )
- );
- $deleteOptions->getQuery()->execute();
- $deleteSettings->delete('ChamiloCoreBundle:SettingsCurrent', 's')
- ->andWhere(
- $deleteSettings->expr()->in(
- 's.variable',
- ['show_full_skill_name_on_skill_wheel']
- )
- );
- $deleteSettings->getQuery()->execute();
- }
- }
|