| | |
| | | $available_dashlets_txt = ''; |
| | | $handle = @opendir(ISPC_WEB_PATH.'/dashboard/dashlets'); |
| | | while ($file = @readdir($handle)) { |
| | | if ($file != '.' && $file != '..' && !is_dir($file)) { |
| | | if ($file != '.' && $file != '..' && !is_dir(ISPC_WEB_PATH.'/dashboard/dashlets/'.$file)) { |
| | | $available_dashlets_txt .= '<a href="javascript:void(0);" class="addPlaceholderContent">['.substr($file, 0, -4).']<pre class="addPlaceholderContent" style="display:none;">['.substr($file, 0, -4).'],</pre></a> '; |
| | | } |
| | | } |
| | | |
| | | if($available_dashlets_txt == '') $available_dashlets_txt = '------'; |
| | | $app->tpl->setVar("available_dashlets_txt", $available_dashlets_txt); |
| | | |
| | | // Logo |
| | | $sys_ini = $app->db->queryOneRecord("SELECT * FROM sys_ini WHERE sysini_id = ?", $this->id); |
| | | if($sys_ini['custom_logo'] != ''){ |
| | | $logo = '<img src="'.$sys_ini['custom_logo'].'" /> <a href="#" class="btn btn-default formbutton-danger formbutton-narrow" style="margin:5px" id="del_custom_logo"><span class="icon icon-delete"></span></a>'; |
| | | } else { |
| | | $logo = '<img src="'.$sys_ini['default_logo'].'" />'; |
| | | } |
| | | $default_logo = '<img src="'.$sys_ini['default_logo'].'" />'; |
| | | $app->tpl->setVar("used_logo", $logo); |
| | | $app->tpl->setVar("default_logo", $default_logo); |
| | | |
| | | parent::onShowEnd(); |
| | | } |
| | |
| | | "FROM web_domain WHERE type NOT IN ('subdomain','vhostsubdomain')"; |
| | | $app->db->query($sql); |
| | | } |
| | | |
| | | //die(print_r($_FILES)); |
| | | // Logo |
| | | /* |
| | | if(isset($_FILES['file']['name']) && is_uploaded_file($_FILES['file']['tmp_name'])){ |
| | | //print_r($_FILES); |
| | | |
| | | $path= $_FILES['file']['tmp_name']; |
| | | $type = pathinfo($path, PATHINFO_EXTENSION); |
| | | $data = file_get_contents($path); |
| | | $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data); |
| | | $app->db->query("UPDATE sys_ini SET custom_logo = ? WHERE sysini_id = ?", $base64, $this->id); |
| | | } |
| | | */ |
| | | |
| | | // Maintenance mode |
| | | if($server_config_array['misc']['maintenance_mode'] == 'y'){ |