for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace N98\Magento\Command\Developer\Translate;
use N98\Magento\Command\AbstractMagentoStoreConfigCommand;
class InlineShopCommand extends AbstractMagentoStoreConfigCommand
{
/**
* @var string
*/
protected $configPath = 'dev/translate_inline/active';
protected $toggleComment = 'Inline Translation';
protected $commandName = 'dev:translate:shop';
protected $commandDescription = 'Toggle inline translation tool for shop';
* If required, handle the output and possible change of the developer IP restrictions
*
* @param \Mage_Core_Model_Store $store
* @param bool $disabled
protected function _afterSave(\Mage_Core_Model_Store $store, $disabled)
$this->detectAskAndSetDeveloperIp($store, $disabled);
}