Skip to content

Instantly share code, notes, and snippets.

@MikeFE
Created June 17, 2015 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeFE/23dec4147f2ae3bb4ef5 to your computer and use it in GitHub Desktop.
Save MikeFE/23dec4147f2ae3bb4ef5 to your computer and use it in GitHub Desktop.
<?php
/*
* This file is part of the Access to Memory (AtoM) software.
*
* Access to Memory (AtoM) is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Access to Memory (AtoM) is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Access to Memory (AtoM). If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Remove HTML tags from various i18n information object fields.
*
* @package symfony
* @subpackage task
* @author Mike G <mikeg@artefactual.com>
*/
class I18nRemoveHtmlTagsTask extends sfBaseTask
{
/**
* @see sfTask
*/
protected function configure()
{
$this->addOptions(array(
new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true),
new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'cli'),
new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'propel'),
));
$this->namespace = 'i18n';
$this->name = 'remove-html-tags';
$this->briefDescription = 'Remove HTML tags from inside information object i18n fields';
$this->detailedDescription = <<<EOF
Remove HTML tags from inside information object i18n fields
EOF;
}
/**
* @see sfTask
*/
public function execute($arguments = array(), $options = array())
{
sfContext::createInstance($this->configuration);
$databaseManager = new sfDatabaseManager($this->configuration);
$conn = $databaseManager->getDatabase('propel')->getConnection();
$criteria = new Criteria;
$criteria->add(QubitInformationObject::PARENT_ID, QubitInformationObject::ROOT_ID);
foreach (QubitInformationObject::get($criteria) as $io)
{
$this->logSection('i18n', 'Got id='.$io->id);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment