PugMoRe_Mageploy_Model_Io_File::getAllActionsFilepath PHP Method

getAllActionsFilepath() protected method

protected getAllActionsFilepath ( )
    protected function getAllActionsFilepath()
    {
        $storagePath = $this->_helper->getStoragePath();
        $filepath = @fopen($storagePath . $this->_helper->getAllActionsFilename(), 'a');
        if (false === $filepath) {
            Mage::logException(new Exception(sprintf("Can't open file '%s'", $this->_helper->getAllActionsFilename())));
        }
        return $filepath;
    }