Exemplo n.º 1
0
function add_themes()
{
    $mainframe = JFactory::getApplication();
    $user = JFactory::getUser();
    if (!$user->authorise('core.create', 'com_formmaker')) {
        $mainframe->redirect("index.php?option=com_formmaker&task=themes", JText::_('JLIB_APPLICATION_ERROR_CREATE_RECORD_NOT_PERMITTED'), 'error');
    }
    $db = JFactory::getDBO();
    $query = "SELECT * FROM #__formmaker_themes where `default`=1";
    $db->setQuery($query);
    $def_theme = $db->loadObject();
    // display function
    HTML_contact::add_themes($def_theme);
}