Файл: concrete5.7.5.6/concrete/src/Updater/Migrations/Migrations/Version20150109000000.php
Строк: 23
<?php
namespace ConcreteCoreUpdaterMigrationsMigrations;
use DoctrineDBALMigrationsAbstractMigration;
use DoctrineDBALSchemaSchema;
use ConcreteCoreBlockBlockTypeBlockType;
class Version20150109000000 extends AbstractMigration
{
public function getDescription()
{
return '5.7.3.1';
}
public function up(Schema $schema)
{
$bt = BlockType::getByHandle('google_map');
if (is_object($bt)) {
$bt->refresh();
}
}
public function down(Schema $schema)
{
}
}