Prado\Web\UI\TControl::dataBindProperties PHP Метод

dataBindProperties() защищенный Метод

Databinding properties of the control.
protected dataBindProperties ( )
    protected function dataBindProperties()
    {
        Prado::trace("Data bind properties", 'Prado\\Web\\UI\\TControl');
        if (isset($this->_rf[self::RF_DATA_BINDINGS])) {
            if (($context = $this->getTemplateControl()) === null) {
                $context = $this;
            }
            foreach ($this->_rf[self::RF_DATA_BINDINGS] as $property => $expression) {
                $this->setSubProperty($property, $context->evaluateExpression($expression));
            }
        }
    }
TControl