BxDolTwigModule::serviceGetShoutboxData PHP Method

serviceGetShoutboxData() public method

    function serviceGetShoutboxData()
    {
        if (!$this->_oDb->_sTableShoutbox) {
            return false;
        }
        return array(array('name' => $this->_sPrefix, 'title' => $this->getTitleKey($this->_aModule['uri']), 'table' => $this->_oDb->_sPrefix . $this->_oDb->_sTableShoutbox, 'code_allow_use' => method_exists($this, 'isFan') ? 'return BxDolService::call("' . $this->_aModule['uri'] . '", "is_fan", array($iHandler));' : '', 'code_allow_delete' => method_exists($this, 'isEntryAdmin') ? 'return BxDolService::call("' . $this->_aModule['uri'] . '", "is_entry_admin", array($iHandler));' : '', 'code_allow_block' => ''));
    }