MageConfigSync\Magento\ConfigurationAdapter::getValue PHP Метод

getValue() публичный Метод

public getValue ( $path ) : array
$path
Результат array
    public function getValue($path)
    {
        $read = $this->_magento->getDatabaseReadAdapter();
        $query = $read->select()->from($this->_table_name, array('scope', 'scope_id', 'path', 'value'))->where('path = ?', $path);
        return $read->fetchAll($query);
    }