PugMoRe_Mageploy_Model_Io_File::canRecord PHP Method

canRecord() public method

public canRecord ( )
    public function canRecord()
    {
        $storagePath = $this->createStoragePath();
        if (!$storagePath) {
            return false;
        }
        if (false === $this->getAllActionsFilepath($storagePath)) {
            return false;
        }
        if (false === $this->getExecutedActionsFilepath($storagePath)) {
            return false;
        }
        return true;
    }