Skip to content
Snippets Groups Projects
Select Git revision
  • 6de18107abc60d7fc415fc38d176de2caed06407
  • master default
2 results

ajax_server.php

Blame
  • clicktodial.php 4.82 KiB
    <?php
    /* Copyright (C) 2004      Rodolphe Quiedeville <rodolphe@quiedeville.org>
     * Copyright (C) 2005-2011 Laurent Destailleur  <eldy@users.sourceforge.org>
     * Copyright (C) 2011-2013 Juanjo Menent		<jmenent@2byte.es>
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 3 of the License, or
     * (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program. If not, see <http://www.gnu.org/licenses/>.
     */
    
    /**
     *   \file       htdocs/admin/clicktodial.php
     *   \ingroup    clicktodial
     *   \brief      Page to setup module clicktodial
     */
    
    require '../main.inc.php';
    require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
    
    $langs->load("admin");
    
    if (!$user->admin) accessforbidden();
    
    $action = GETPOST("action");
    
    
    /*
     *	Actions
     */
     
    if ($action == 'setvalue' && $user->admin)
    {
        $result=dolibarr_set_const($db, "CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS", GETPOST("CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS"), 'chaine', 0, '', $conf->entity);
        $result=dolibarr_set_const($db, "CLICKTODIAL_URL", GETPOST("CLICKTODIAL_URL"), 'chaine', 0, '', $conf->entity);
        
        if ($result1 >= 0 && $result2 >= 0)
        {
    		setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
        }
        else
        {
            setEventMessages($langs->trans("Error"), null, 'errors');
        }
    }
    
    
    /*
     * View
     */
    
    $user->fetch_clicktodial();
    
    $wikihelp='EN:Module_ClickToDial_En|FR:Module_ClickToDial|ES:Módulo_ClickTodial_Es';
    llxHeader('',$langs->trans("ClickToDialSetup"),$wikihelp);
    
    $linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
    print load_fiche_titre($langs->trans("ClickToDialSetup"),$linkback,'title_setup');
    
    print $langs->trans("ClickToDialDesc")."<br>\n";
    
    print '<br>';