27require 
'../main.inc.php';
 
   28require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
 
   37$action = 
GETPOST(
'action', 
'aZ09');
 
   39if (!isModEnabled(
'clicktodial')) {
 
   40  accessforbidden($langs->transnoentitiesnoconv(
"WarningModuleNotActive", $langs->transnoentitiesnoconv(
"Module58Name")));
 
   48if ($action == 
'setvalue' && $user->admin) {
 
   49  $result1 = 
dolibarr_set_const($db, 
"CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS", 
GETPOST(
"CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS"), 
'chaine', 0, 
'', $conf->entity);
 
   51  $result3 = 
dolibarr_set_const($db, 
"CLICKTODIAL_KEY_FOR_CIDLOOKUP", 
GETPOST(
"CLICKTODIAL_KEY_FOR_CIDLOOKUP"), 
'chaine', 0, 
'', $conf->entity);
 
   53  if ($result1 >= 0 && $result2 >= 0 && $result3 >= 0) {
 
   67$user->fetch_clicktodial();
 
   69$wikihelp = 
'EN:Module_ClickToDial_En|FR:Module_ClickToDial|ES:Módulo_ClickTodial_Es';
 
   70llxHeader(
'', $langs->trans(
"ClickToDialSetup"), $wikihelp);
 
   72$linkback = 
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
 
   73print 
load_fiche_titre($langs->trans(
"ClickToDialSetup"), $linkback, 
'title_setup');
 
   75print 
'<span class="opacitymedium">'.$langs->trans(
"ClickToDialDesc").
"</span><br>\n";
 
   78print 
'<form method="post" action="clicktodial.php">';
 
   79print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
   80print 
'<input type="hidden" name="action" value="setvalue">';
 
   82print 
'<div class="div-table-responsive-no-min">';
 
   83print 
'<table class="noborder centpercent">';
 
   84print 
'<tr class="liste_titre">';
 
   85print 
'<td class="minwidth200">'.$langs->trans(
"Name").
'</td>';
 
   86print 
'<td>'.$langs->trans(
"Value").
'</td>';
 
   90print 
'<tr class="oddeven"><td>';
 
   91print $langs->trans(
"ClickToDialUseTelLink").
'</td><td>';
 
   92print $form->selectyesno(
"CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS", 
getDolGlobalString(
'CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS'), 1).
'<br>';
 
   94print 
'<span class="opacitymedium small">'.$langs->trans(
"ClickToDialUseTelLinkDesc").
'</span>';
 
   98print 
'<tr class="oddeven"><td>';
 
   99print $langs->trans(
"DefaultLink").
'</td><td>';
 
  100print 
'<input class="quatrevingtpercent" type="text" id="CLICKTODIAL_URL" name="CLICKTODIAL_URL"'.(getDolGlobalString(
'CLICKTODIAL_USE_TEL_LINK_ON_PHONE_NUMBERS') ? 
' disabled="disabled"' : 
'').
' value="'.
getDolGlobalString(
'CLICKTODIAL_URL').
'"><br>';
 
  103print $langs->trans(
"ClickToDialUrlDesc").
'<br>';
 
  105print 
'<span class="opacitymedium">';
 
  106print $langs->trans(
"Examples").
':<br>';
 
  107print 
'* https://myphoneserver/phoneurl?login=__LOGIN__&password=__PASS__&caller=__PHONEFROM__&called=__PHONETO__<br>';
 
  108print 
'* sip:__PHONETO__@my.sip.server';
 
  114  print 
info_admin($langs->trans(
"ValueOverwrittenByUserSetup"));
 
  119print 
'<tr class="oddeven">';
 
  120print 
'<td>'.$langs->trans(
"SecurityKey").
'</td>';
 
  123global $dolibarr_main_url_root;
 
  126$urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT, 
'/').
'$/i', 
'', trim($dolibarr_main_url_root));
 
  127$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; 
 
  133$url = $urlwithroot.
'/public/clicktodial/cidlookup.php?securitykey='.
getDolGlobalString(
'CLICKTODIAL_KEY_FOR_CIDLOOKUP', 
'ValueToDefine').
'&phone=...';
 
  139print 
'<span class="opacitymedium">'.$langs->trans(
"CIDLookupURL").
'</span>';
 
  143print 
'<input type="text" class="flat minwidth300" id="CLICKTODIAL_KEY_FOR_CIDLOOKUP" name="CLICKTODIAL_KEY_FOR_CIDLOOKUP" value="'.(GETPOST(
'CLICKTODIAL_KEY_FOR_CIDLOOKUP') ? 
GETPOST(
'CLICKTODIAL_KEY_FOR_CIDLOOKUP') : (
getDolGlobalString(
'CLICKTODIAL_KEY_FOR_CIDLOOKUP') ? $conf->global->CLICKTODIAL_KEY_FOR_CIDLOOKUP : 
'')).
'">';
 
  144if (!empty($conf->use_javascript_ajax)) {
 
  145  print 
' '.img_picto($langs->trans(
'Generate'), 
'refresh', 
'id="generate_token" class="linkobject"');
 
  153print $form->buttonsSaveCancel(
"Modify", 
'');
 
  155print 
'</form><br><br>';
 
  159  $user->fetch_clicktodial();
 
  161  $phonefortest = $mysoc->phone;
 
  163    $phonefortest = 
GETPOST(
'phonefortest');
 
  166  print 
'<form action="'.$_SERVER[
"PHP_SELF"].
'">';
 
  167  print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
  168  print $langs->trans(
"LinkToTestClickToDial", $user->login).
' : ';
 
  169  print 
'<input class="flat" type="text" name="phonefortest" value="'.dol_escape_htmltag($phonefortest).
'">';
 
  170  print 
'<input type="submit" class="button small" value="'.dol_escape_htmltag($langs->trans(
"RefreshPhoneLink")).
'">';
 
  174  if (preg_match(
'/__LOGIN__/', $conf->global->CLICKTODIAL_URL) && empty($user->clicktodial_login)) {
 
  177  if (preg_match(
'/__PASSWORD__/', $conf->global->CLICKTODIAL_URL) && empty($user->clicktodial_password)) {
 
  180  if (preg_match(
'/__PHONEFROM__/', $conf->global->CLICKTODIAL_URL) && empty($user->clicktodial_poste)) {
 
  184  if ($setupcomplete) {
 
  185    print $langs->trans(
"LinkToTest", $user->login).
':   '.
dol_print_phone($phonefortest, 
'', 0, 0, 
'AC_TEL', 
'', 
'mobile');
 
  187    $langs->load(
"errors");
 
  188    print 
'<div class="warning">'.$langs->trans(
"WarningClickToDialUserSetupNotComplete").
'</div>';
 
  193include_once DOL_DOCUMENT_ROOT.
'/core/lib/security2.lib.php';
 
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
 
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
 
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
 
dol_print_phone($phone, $countrycode='', $cid=0, $socid=0, $addlink='', $separ=" ", $withpicto='', $titlealt='', $adddivfloat=0)
Format phone numbers according to country.
 
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
 
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
 
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
 
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
 
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
 
dolJSToSetRandomPassword($htmlname, $htmlnameofbutton='generate_token', $generic=1)
Ouput javacript to autoset a generated password using default module into a HTML element.
 
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.