AdminPageFramework_TaxonomyField_View::_getFieldsOutput PHP Метод

_getFieldsOutput() приватный Метод

private _getFieldsOutput ( $iTermID, $bRenderTableRow )
    private function _getFieldsOutput($iTermID, $bRenderTableRow)
    {
        $_aOutput = array();
        $_aOutput[] = wp_nonce_field($this->oProp->sClassHash, $this->oProp->sClassHash, true, false);
        $this->_setOptionArray($iTermID, $this->oProp->sOptionKey);
        $_aOutput[] = $this->oForm->get($bRenderTableRow);
        $_sOutput = $this->oUtil->addAndApplyFilters($this, 'content_' . $this->oProp->sClassName, $this->content(implode(PHP_EOL, $_aOutput)));
        $this->oUtil->addAndDoActions($this, 'do_' . $this->oProp->sClassName, $this);
        return $_sOutput;
    }