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 InlineAdminCommand extends AbstractMagentoStoreConfigCommand
{
/**
* @var string
*/
protected $configPath = 'dev/translate_inline/active_admin';
protected $toggleComment = 'Inline Translation (Admin)';
protected $commandName = 'dev:translate:admin';
protected $commandDescription = 'Toggle inline translation tool for admin';
protected $scope = self::SCOPE_GLOBAL;
* 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);
}