display info message after domain owner change
| | |
| | | $wb['strength_5'] = 'Very Strong'; |
| | | $wb['weak_password_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length and have a strength of "{strength}".'; |
| | | $wb['weak_password_length_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length.'; |
| | | $wb['domain_owner_changed'] = 'You have changed the owner of domain {domain}, please change website and mail domain owner for this domain accordingly.'; |
| | | |
| | | ?> |
| | |
| | | $wb['strength_5'] = 'Very Strong'; |
| | | $wb['weak_password_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length and have a strength of \\"{strength}\\".'; |
| | | $wb['weak_password_length_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length.'; |
| | | $wb['domain_owner_changed'] = 'Has cambiado el propietario del dominio {domain}, por favor cambia tambiƩn el propietario del sitio web y dominio de correo de este dominio.'; |
| | | ?> |
| | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' && isset($this->dataRecord["client_group_id"])) { |
| | | $client_group_id = $app->functions->intval($this->dataRecord["client_group_id"]); |
| | | $app->db->query("UPDATE domain SET sys_groupid = $client_group_id, sys_perm_group = 'ru' WHERE domain_id = ".$this->id); |
| | | $lng_text = $app->lng("domain_owner_changed"); |
| | | $_SESSION['show_info_msg'] = str_replace("{domain}", $this->dataRecord["domain"], $lng_text); |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | $app->uses('listform_actions'); |
| | | |
| | | if(isset($_SESSION['show_info_msg'])) { |
| | | $app->tpl->setloop('info', array(array('info_msg' => '<p>'.$_SESSION['show_info_msg'].'</p>'))); |
| | | unset($_SESSION['show_info_msg']); |
| | | } |
| | | |
| | | $app->listform_actions->SQLOrderBy = 'ORDER BY domain.domain'; |
| | | $app->listform_actions->onLoad(); |
| | | |
| | |
| | | <div class="panel panel_list_domain"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <div> |
| | | <tmpl_if name='info'> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | <tmpl_loop name="info"> |
| | | {tmpl_var name='info_msg'} |
| | | </tmpl_loop> |
| | | </div> |
| | | </div> |
| | | </tmpl_if> |
| | | </div> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('client/domain_edit.php');"> |