_controller = 'adminhtml_bulksync_queue';
$this->_blockGroup = 'monkey';
$this->_headerText = Mage::helper('monkey')->__('Jobs Queue');
parent::__construct();
$this->_removeButton('add');
}
/**
* Check whether it is single store mode
*
* @return bool
*/
public function isSingleStoreMode()
{
if (!Mage::app()->isSingleStoreMode()) {
return false;
}
return true;
}
}