Prado\Data\SqlMap\Configuration\TSqlMapXmlMappingConfiguration::loadFlushOnCache PHP Method

loadFlushOnCache() protected method

Load the flush on cache properties.
protected loadFlushOnCache ( $cacheModel, $parent, $node )
    protected function loadFlushOnCache($cacheModel, $parent, $node)
    {
        $id = $cacheModel->getID();
        if (!isset($this->_FlushOnExecuteStatements[$id])) {
            $this->_FlushOnExecuteStatements[$id] = array();
        }
        foreach ($node->attributes() as $name => $value) {
            if (strtolower($name) === 'statement') {
                $this->_FlushOnExecuteStatements[$id][] = (string) $value;
            }
        }
    }