mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-19 13:01:51 -07:00
user favourites
This commit is contained in:
parent
93b2a8617a
commit
7734c6cf04
27 changed files with 248 additions and 29 deletions
|
@ -13,6 +13,8 @@
|
||||||
user=$1
|
user=$1
|
||||||
system=$(echo "$2" |tr '[:lower:]' '[:upper:]')
|
system=$(echo "$2" |tr '[:lower:]' '[:upper:]')
|
||||||
object=$3
|
object=$3
|
||||||
|
email=$3
|
||||||
|
id=$3
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
source $VESTA/func/main.sh
|
source $VESTA/func/main.sh
|
||||||
|
@ -24,7 +26,13 @@ source $VESTA/conf/vesta.conf
|
||||||
#----------------------------------------------------------#
|
#----------------------------------------------------------#
|
||||||
|
|
||||||
check_args '3' "$#" 'USER SYSTEM OBJECT'
|
check_args '3' "$#" 'USER SYSTEM OBJECT'
|
||||||
validate_format 'user' 'system' 'object'
|
validate_format 'user' 'system'
|
||||||
|
case $system in
|
||||||
|
MAIL_ACC) validate_format 'email' ;;
|
||||||
|
CRON) validate_format 'id' ;;
|
||||||
|
DNS_REC) validate_format 'id' ;;
|
||||||
|
*) validate_format 'object'
|
||||||
|
esac
|
||||||
is_object_valid 'user' 'USER' "$user"
|
is_object_valid 'user' 'USER' "$user"
|
||||||
is_object_unsuspended 'user' 'USER' "$user"
|
is_object_unsuspended 'user' 'USER' "$user"
|
||||||
|
|
||||||
|
@ -33,7 +41,9 @@ case $system in
|
||||||
USER) check='ok' ;;
|
USER) check='ok' ;;
|
||||||
WEB) check='ok' ;;
|
WEB) check='ok' ;;
|
||||||
DNS) check='ok' ;;
|
DNS) check='ok' ;;
|
||||||
|
DNS_REC) check='ok' ;;
|
||||||
MAIL) check='ok' ;;
|
MAIL) check='ok' ;;
|
||||||
|
MAIL_ACC) check='ok' ;;
|
||||||
DB) check='ok' ;;
|
DB) check='ok' ;;
|
||||||
CRON) check='ok' ;;
|
CRON) check='ok' ;;
|
||||||
BACKUP) check='ok' ;;
|
BACKUP) check='ok' ;;
|
||||||
|
@ -52,7 +62,9 @@ esac
|
||||||
USER=''
|
USER=''
|
||||||
WEB=''
|
WEB=''
|
||||||
DNS=''
|
DNS=''
|
||||||
|
DNS_REC=''
|
||||||
MAIL=''
|
MAIL=''
|
||||||
|
MAIL_ACC=''
|
||||||
DB=''
|
DB=''
|
||||||
CRON=''
|
CRON=''
|
||||||
BACKUP=''
|
BACKUP=''
|
||||||
|
@ -89,7 +101,9 @@ eval $system=$value
|
||||||
echo "USER='$USER'
|
echo "USER='$USER'
|
||||||
WEB='$WEB'
|
WEB='$WEB'
|
||||||
DNS='$DNS'
|
DNS='$DNS'
|
||||||
|
DNS_REC='$DNS_REC'
|
||||||
MAIL='$MAIL'
|
MAIL='$MAIL'
|
||||||
|
MAIL_ACC='$MAIL_ACC'
|
||||||
DB='$DB'
|
DB='$DB'
|
||||||
CRON='$CRON'
|
CRON='$CRON'
|
||||||
BACKUP='$BACKUP'
|
BACKUP='$BACKUP'
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
user=$1
|
user=$1
|
||||||
system=$(echo "$2" |tr '[:lower:]' '[:upper:]')
|
system=$(echo "$2" |tr '[:lower:]' '[:upper:]')
|
||||||
object=$3
|
object=$3
|
||||||
|
email=$3
|
||||||
|
id=$3
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
source $VESTA/func/main.sh
|
source $VESTA/func/main.sh
|
||||||
|
@ -24,7 +26,12 @@ source $VESTA/conf/vesta.conf
|
||||||
#----------------------------------------------------------#
|
#----------------------------------------------------------#
|
||||||
|
|
||||||
check_args '3' "$#" 'USER SYSTEM OBJECT'
|
check_args '3' "$#" 'USER SYSTEM OBJECT'
|
||||||
validate_format 'user' 'system' 'object'
|
case $system in
|
||||||
|
MAIL_ACC) validate_format 'email' ;;
|
||||||
|
CRON) validate_format 'id' ;;
|
||||||
|
DNS_REC) validate_format 'id' ;;
|
||||||
|
*) validate_format 'object'
|
||||||
|
esac
|
||||||
is_object_valid 'user' 'USER' "$user"
|
is_object_valid 'user' 'USER' "$user"
|
||||||
is_object_unsuspended 'user' 'USER' "$user"
|
is_object_unsuspended 'user' 'USER' "$user"
|
||||||
|
|
||||||
|
@ -33,7 +40,9 @@ case $system in
|
||||||
USER) check='ok' ;;
|
USER) check='ok' ;;
|
||||||
WEB) check='ok' ;;
|
WEB) check='ok' ;;
|
||||||
DNS) check='ok' ;;
|
DNS) check='ok' ;;
|
||||||
|
DNS_REC) check='ok' ;;
|
||||||
MAIL) check='ok' ;;
|
MAIL) check='ok' ;;
|
||||||
|
MAIL_ACC) check='ok' ;;
|
||||||
DB) check='ok' ;;
|
DB) check='ok' ;;
|
||||||
CRON) check='ok' ;;
|
CRON) check='ok' ;;
|
||||||
BACKUP) check='ok' ;;
|
BACKUP) check='ok' ;;
|
||||||
|
@ -52,7 +61,9 @@ esac
|
||||||
USER=''
|
USER=''
|
||||||
WEB=''
|
WEB=''
|
||||||
DNS=''
|
DNS=''
|
||||||
|
DNS_REC=''
|
||||||
MAIL=''
|
MAIL=''
|
||||||
|
MAIL_ACC=''
|
||||||
DB=''
|
DB=''
|
||||||
CRON=''
|
CRON=''
|
||||||
BACKUP=''
|
BACKUP=''
|
||||||
|
@ -89,7 +100,9 @@ eval $system=$value
|
||||||
echo "USER='$USER'
|
echo "USER='$USER'
|
||||||
WEB='$WEB'
|
WEB='$WEB'
|
||||||
DNS='$DNS'
|
DNS='$DNS'
|
||||||
|
DNS_REC='$DNS_REC'
|
||||||
MAIL='$MAIL'
|
MAIL='$MAIL'
|
||||||
|
MAIL_ACC='$MAIL_ACC'
|
||||||
DB='$DB'
|
DB='$DB'
|
||||||
CRON='$CRON'
|
CRON='$CRON'
|
||||||
BACKUP='$BACKUP'
|
BACKUP='$BACKUP'
|
||||||
|
|
|
@ -36,9 +36,9 @@ json_list_favourites() {
|
||||||
fi
|
fi
|
||||||
(( ++i))
|
(( ++i))
|
||||||
done
|
done
|
||||||
if [ -n "$value" ]; then
|
#if [ -n "$value" ]; then
|
||||||
echo -e ' }'
|
echo -e ' }'
|
||||||
fi
|
#fi
|
||||||
echo -e '}'
|
echo -e '}'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +74,9 @@ is_object_valid 'user' 'USER' "$user"
|
||||||
USER=''
|
USER=''
|
||||||
WEB=''
|
WEB=''
|
||||||
DNS=''
|
DNS=''
|
||||||
|
DNS_REC=''
|
||||||
MAIL=''
|
MAIL=''
|
||||||
|
MAIL_ACC=''
|
||||||
DB=''
|
DB=''
|
||||||
CRON=''
|
CRON=''
|
||||||
BACKUP=''
|
BACKUP=''
|
||||||
|
@ -84,7 +86,8 @@ FIREWALL=''
|
||||||
|
|
||||||
# Defining fileds to select
|
# Defining fileds to select
|
||||||
OBJ='Favourites'
|
OBJ='Favourites'
|
||||||
fields='$OBJ $USER $WEB $DNS $MAIL $DB $CRON $BACKUP $IP $PACKAGE $FIREWALL'
|
fields='$OBJ $USER $WEB $DNS $DNS_REC $MAIL $MAIL_ACC $DB $CRON $BACKUP
|
||||||
|
$IP $PACKAGE $FIREWALL'
|
||||||
|
|
||||||
# Listing favourites
|
# Listing favourites
|
||||||
case $format in
|
case $format in
|
||||||
|
|
|
@ -916,7 +916,7 @@ validate_format(){
|
||||||
ns2) validate_format_domain "$arg" 'name_server';;
|
ns2) validate_format_domain "$arg" 'name_server';;
|
||||||
ns3) validate_format_domain "$arg" 'name_server';;
|
ns3) validate_format_domain "$arg" 'name_server';;
|
||||||
ns4) validate_format_domain "$arg" 'name_server';;
|
ns4) validate_format_domain "$arg" 'name_server';;
|
||||||
object) validate_format_domain_alias "$arg" 'object';;
|
object) validate_format_name_s "$arg" 'object';;
|
||||||
package) validate_format_name "$arg" "$arg_name" ;;
|
package) validate_format_name "$arg" "$arg_name" ;;
|
||||||
password) validate_format_password "$arg" ;;
|
password) validate_format_password "$arg" ;;
|
||||||
port) validate_format_int "$arg" 'port' ;;
|
port) validate_format_int "$arg" 'port' ;;
|
||||||
|
|
65
web/add/favorite/index.php
Normal file
65
web/add/favorite/index.php
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
<?
|
||||||
|
|
||||||
|
echo 'adding favorite <br><br>';
|
||||||
|
|
||||||
|
// Init
|
||||||
|
error_reporting(NULL);
|
||||||
|
ob_start();
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
|
||||||
|
// mail_acc
|
||||||
|
// firewall
|
||||||
|
|
||||||
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
||||||
|
|
||||||
|
// Check POST request
|
||||||
|
//if (!empty($_POST['ok'])) {
|
||||||
|
|
||||||
|
// Check token
|
||||||
|
// if ((!isset($_POST['token'])) || ($_SESSION['token'] != $_POST['token'])) {
|
||||||
|
// header('location: /login/');
|
||||||
|
// exit();
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
// v-list-user-favourites
|
||||||
|
// v-delete-user-favourites admin web test0011.com
|
||||||
|
|
||||||
|
// Protect input
|
||||||
|
// $v_section = escapeshellarg($_POST['v_section']);
|
||||||
|
// $v_unit_id = escapeshellarg($_POST['v_unit_id']);
|
||||||
|
|
||||||
|
$v_section = escapeshellarg($_REQUEST['v_section']);
|
||||||
|
$v_unit_id = escapeshellarg($_REQUEST['v_unit_id']);
|
||||||
|
|
||||||
|
// $v_section = 'web';
|
||||||
|
// $v_unit_id = 'test0011.com';
|
||||||
|
|
||||||
|
|
||||||
|
echo VESTA_CMD."v-add-user-favourites ".$_SESSION['user']." ".$v_section." ".$v_unit_id;
|
||||||
|
|
||||||
|
echo ' - ';
|
||||||
|
|
||||||
|
// Add cron job
|
||||||
|
exec (VESTA_CMD."v-add-user-favourites ".$_SESSION['user']." ".$v_section." ".$v_unit_id, $output, $return_var);
|
||||||
|
check_return_code($return_var,$output);
|
||||||
|
|
||||||
|
var_dump($return_var);
|
||||||
|
echo '<br> -------------------- <br>';
|
||||||
|
|
||||||
|
var_dump($output);
|
||||||
|
echo '<br> -------------------- <br>';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
echo '<br>favorites:<br>';
|
||||||
|
|
||||||
|
// Data
|
||||||
|
exec (VESTA_CMD."v-list-user-favourites $user json", $output, $return_var);
|
||||||
|
$data = json_decode(implode('', $output), true);
|
||||||
|
$data = array_reverse($data,true);
|
||||||
|
print_r($data);
|
||||||
|
*/
|
||||||
|
//}
|
||||||
|
?>
|
44
web/css/styles.min.css
vendored
44
web/css/styles.min.css
vendored
|
@ -1890,8 +1890,8 @@ div.l-content > div.l-separator:nth-of-type(4) {
|
||||||
width: 36px;
|
width: 36px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
background-position: -216px 560px;
|
background-position: -216px 560px;
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
.l-unit--starred .l-icon-star {
|
.l-unit--starred .l-icon-star {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -1912,7 +1912,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
|
||||||
}
|
}
|
||||||
|
|
||||||
.l-unit:hover .l-icon-star {
|
.l-unit:hover .l-icon-star {
|
||||||
/*display: inline-block;*/
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2144,6 +2144,13 @@ div.l-content > div.l-separator:nth-of-type(4) {
|
||||||
.step-top {
|
.step-top {
|
||||||
padding-top: 42px;
|
padding-top: 42px;
|
||||||
}
|
}
|
||||||
|
.step-top-small {
|
||||||
|
padding-top: 22px;
|
||||||
|
}
|
||||||
|
.jump-top {
|
||||||
|
margin-top: -60px;
|
||||||
|
}
|
||||||
|
|
||||||
.data a {
|
.data a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
@ -2341,14 +2348,30 @@ a.vst-text:active b{
|
||||||
.additional-control.ftp-remove-user {
|
.additional-control.ftp-remove-user {
|
||||||
padding: 2px 0 0 0;
|
padding: 2px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.additional-control.delete:hover,
|
||||||
.additional-control.ftp-remove-user:hover {
|
.additional-control.ftp-remove-user:hover {
|
||||||
background-color: #FF3438;
|
background-color: #FF3438;
|
||||||
border-color: #FF3438;
|
border-color: #FF3438;
|
||||||
}
|
}
|
||||||
|
.additional-control.delete:active,
|
||||||
.additional-control.ftp-remove-user:active {
|
.additional-control.ftp-remove-user:active {
|
||||||
background-color: #FF5F5F;
|
background-color: #FF5F5F;
|
||||||
border-color: #FF5F5F;
|
border-color: #FF5F5F;
|
||||||
}
|
}
|
||||||
|
.additional-control.add:hover {
|
||||||
|
background-color: #9FBF0C;
|
||||||
|
border-color: #9FBF0C;
|
||||||
|
}
|
||||||
|
.additional-control.add:active{
|
||||||
|
background-color: #c0e60f;
|
||||||
|
border-color: #c0e60f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.additional-control.remove-ns {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.data .step-left {
|
.data .step-left {
|
||||||
padding-left: 50px;
|
padding-left: 50px;
|
||||||
}
|
}
|
||||||
|
@ -2478,6 +2501,23 @@ td.hint {
|
||||||
.data-dotted {
|
.data-dotted {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
.mail-infoblock-td {
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
.mail-infoblock {
|
||||||
|
padding-top: 76px;
|
||||||
|
margin-left: -100px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
.mail-infoblock td {
|
||||||
|
color: #777;
|
||||||
|
font-size: 14px;
|
||||||
|
height: 20px;
|
||||||
|
padding-right: 25px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
:focus {outline:none;}
|
:focus {outline:none;}
|
||||||
::-moz-focus-inner {border:0;}
|
::-moz-focus-inner {border:0;}
|
||||||
|
|
19
web/delete/favorite/index.php
Normal file
19
web/delete/favorite/index.php
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
echo 'delete Favorites<br>';
|
||||||
|
|
||||||
|
|
||||||
|
error_reporting(NULL);
|
||||||
|
ob_start();
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
||||||
|
|
||||||
|
$v_section = escapeshellarg($_REQUEST['v_section']);
|
||||||
|
$v_unit_id = escapeshellarg($_REQUEST['v_unit_id']);
|
||||||
|
|
||||||
|
exec (VESTA_CMD."v-delete-user-favourites ".$_SESSION['user']." ".$v_section." ".$v_unit_id, $output, $return_var);
|
||||||
|
check_return_code($return_var,$output);
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
25
web/list/favorites/index.php
Normal file
25
web/list/favorites/index.php
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
session_start();
|
||||||
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
||||||
|
|
||||||
|
echo '<br> Favorites: <br>';
|
||||||
|
|
||||||
|
// Data
|
||||||
|
exec (VESTA_CMD."v-list-user-favourites ".$_SESSION['user']." json", $output, $return_var);
|
||||||
|
|
||||||
|
|
||||||
|
// print_r(implode('', $output));
|
||||||
|
// $json = '{ "Favourites": { "USER": "", "WEB": "bulletfarm.com", "DNS": "", "MAIL": "", "DB": "", "CRON": "", "BACKUP": "", "IP": "", "PACKAGE": "", "FIREWALL": ""}}';
|
||||||
|
// $data = json_decode($json, true);
|
||||||
|
|
||||||
|
|
||||||
|
$data = json_decode(implode('', $output).'}', true);
|
||||||
|
$data = array_reverse($data,true);
|
||||||
|
|
||||||
|
print_r($data);
|
||||||
|
// $data = array_reverse($data,true);
|
||||||
|
|
||||||
|
// $data = json_decode(implode('', $output), true);
|
||||||
|
|
||||||
|
?>
|
|
@ -79,7 +79,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['cron-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="cron-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=htmlspecialchars($data[$key]['CMD'], ENT_NOQUOTES)?>" sort-star="<? if($_COOKIE['cron-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['CRON'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="cron"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=htmlspecialchars($data[$key]['CMD'], ENT_NOQUOTES)?>"
|
||||||
|
sort-star="<? if($_SESSION['favourites']['CRON'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="job[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="job[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -109,7 +109,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['db-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="db-<?=sha1($key)?>"" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" sort-star="<? if($_COOKIE['db-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['DB'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="db"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>"
|
||||||
|
sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" sort-star="<? if($_SESSION['favourites']['DB'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="database[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="database[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -69,7 +69,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_COOKIE['dns-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="dns-<?=sha1($key)?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$key]['RECORDS']?>" sort-star="<?if($_COOKIE['dns-'.sha1($key)] == 1) echo '1'; else echo '0';?>">
|
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>"
|
||||||
|
v_section="dns" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
|
||||||
|
sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$key]['RECORDS']?>" sort-star="<?if($_SESSION['favourites']['DNS'][$key] == 1) echo '1'; else echo '0';?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -67,7 +67,8 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended';?>">
|
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS_REC'][$key] == 1) echo ' l-unit--starred';?>"
|
||||||
|
v_unit_id="<?=$key?>" v_section="dns_rec">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
||||||
|
@ -96,6 +97,9 @@
|
||||||
|
|
||||||
<div class="l-unit__col l-unit__col--left clearfix">
|
<div class="l-unit__col l-unit__col--left clearfix">
|
||||||
<div class="l-unit__suspended""><?=__('suspended')?></div>
|
<div class="l-unit__suspended""><?=__('suspended')?></div>
|
||||||
|
<div class="text-center jump-top">
|
||||||
|
<i class="l-icon-star"></i>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__col -->
|
<!-- /.l-unit__col -->
|
||||||
<div class="l-unit__col l-unit__col--right">
|
<div class="l-unit__col l-unit__col--right">
|
||||||
|
|
|
@ -72,7 +72,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_COOKIE['firewall-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="firewall-<?=sha1($key)?>" sort-action="<?=$data[$key]['ACTION']?>" sort-protocol="<?=$data[$key]['PROTOCOL']?>" sort-port="<?=$data[$key]['PORT']?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-comment="<?=$data[$key]['COMMENT']?>" sort-star="<? if($_COOKIE['firewall-'.sha1($key)] == 1) echo '1'; else echo '2'; ?>">
|
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['FIREWALL'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="firewall"
|
||||||
|
sort-action="<?=$data[$key]['ACTION']?>" sort-protocol="<?=$data[$key]['PROTOCOL']?>" sort-port="<?=$data[$key]['PORT']?>"
|
||||||
|
sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-comment="<?=$data[$key]['COMMENT']?>" sort-star="<? if($_SESSION['favourites']['FIREWALL'][$key] == 1) echo '1'; else echo '2'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="rule[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="rule[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -60,7 +60,10 @@
|
||||||
++$i;
|
++$i;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_COOKIE['ip-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="ip-<?=sha1($key)?>" sort-ip="<?=str_replace('.', '', $key)?>" sort-date="<?=strtotime($data[$key]['DATE'] .' '. $data[$key]['TIME'] )?>" sort-netmask="<?=str_replace('.', '', $data[$key]['NETMASK'])?>" sort-interface="<?=__($data[$key]['INTERFACE'])?>" sort-domains="<?=$data[$key]['U_WEB_DOMAINS']?>" sort-owner="<?=__($data[$key]['OWNER'])?>" sort-star="<? if($_COOKIE['ip-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_SESSION['favourites']['IP'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>"
|
||||||
|
v_section="ip" sort-ip="<?=str_replace('.', '', $key)?>" sort-date="<?=strtotime($data[$key]['DATE'] .' '. $data[$key]['TIME'] )?>"
|
||||||
|
sort-netmask="<?=str_replace('.', '', $data[$key]['NETMASK'])?>" sort-interface="<?=__($data[$key]['INTERFACE'])?>" sort-domains="<?=$data[$key]['U_WEB_DOMAINS']?>"
|
||||||
|
sort-owner="<?=__($data[$key]['OWNER'])?>" sort-star="<? if($_SESSION['favourites']['IP'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="ip[]" value="<?=$key?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="ip[]" value="<?=$key?>">
|
||||||
|
|
|
@ -86,7 +86,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['mail-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="mail-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_COOKIE['mail-'.sha1($key)] == 1) echo "1"; else echo "0"; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['MAIL'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="mail"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>"
|
||||||
|
sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_SESSION['favourites']['MAIL'][$key] == 1) echo "1"; else echo "0"; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -82,7 +82,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['mail-acc-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="mail-acc-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?$data[$key]['U_DISK']?>" sort-star="<? if($_COOKIE['mail-acc-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] == 1) echo ' l-unit--starred'; ?>"
|
||||||
|
v_unit_id="<?=$key."@".$_GET['domain']?>" v_section="mail_acc" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?$data[$key]['U_DISK']?>"
|
||||||
|
sort-star="<? if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="account[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="account[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -56,7 +56,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_COOKIE['packages-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="packages-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-star="<?if($_COOKIE['packages-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_SESSION['favourites']['PACKAGE'][$key] == 1) echo ' l-unit--starred'; ?>"
|
||||||
|
v_unit_id="<?=$key?>" v_section="package" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
|
||||||
|
sort-star="<?if($_SESSION['favourites']['PACKAGE'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="package[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="package[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -81,7 +81,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['user-'.sha1($key)] == 1) echo ' l-unit--starred';?>" uniq-id="user-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_COOKIE['user-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['USER'][$key] == 1) echo ' l-unit--starred';?>" v_section="user"
|
||||||
|
v_unit_id="<?=$key?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
|
||||||
|
sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_SESSION['favourites']['USER'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="user[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="user[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -115,10 +115,10 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_COOKIE['web-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="web-<?=sha1($key)?>"
|
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_SESSION['favourites']['WEB'][$key] == 1) echo ' l-unit--starred'; ?>" v_section="web" v_unit_id="<?=$key?>"
|
||||||
id="web-unit-<?=$i?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>"
|
id="web-unit-<?=$i?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>"
|
||||||
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>"
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>"
|
||||||
sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_COOKIE['web-'.sha1($key)] == 1) echo '1'; else echo '0';?>">
|
sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_SESSION['WEB'][$key] == 1) echo '1'; else echo '0';?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?=$key?>">
|
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?=$key?>">
|
||||||
|
|
|
@ -80,7 +80,8 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['cron-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="cron-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=htmlspecialchars($data[$key]['CMD'], ENT_NOQUOTES)?>" sort-star="<? if($_COOKIE['cron-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites'][CRON][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="cron"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=htmlspecialchars($data[$key]['CMD'], ENT_NOQUOTES)?>" sort-star="<? if($_SESSION['favourites']['CRON'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="job[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="job[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -109,7 +109,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['db-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="db-<?=sha1($key)?>"" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" sort-star="<? if($_COOKIE['db-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['DB'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="db"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>"
|
||||||
|
sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" sort-star="<? if($_SESSION['favourites']['DB'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="database[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="database[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -70,7 +70,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_COOKIE['dns-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="dns-<?=sha1($key)?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$key]['RECORDS']?>" sort-star="<? if($_COOKIE['dns-'.sha1($key)] == 1) echo '1'; else echo '0';?>">
|
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="dns"
|
||||||
|
sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
|
||||||
|
sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$key]['RECORDS']?>" sort-star="<? if($_SESSION['favourites']['DNS'][$key] == 1) echo '1'; else echo '0';?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -67,7 +67,8 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended';?>">
|
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS_REC'][$key] == 1) echo ' l-unit--starred';?>"
|
||||||
|
v_unit_id="<?=$key?>" v_section="dns_rec">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
||||||
|
@ -96,6 +97,9 @@
|
||||||
|
|
||||||
<div class="l-unit__col l-unit__col--left clearfix">
|
<div class="l-unit__col l-unit__col--left clearfix">
|
||||||
<div class="l-unit__suspended""><?__('suspended')?></div>
|
<div class="l-unit__suspended""><?__('suspended')?></div>
|
||||||
|
<div class="text-center jump-top">
|
||||||
|
<i class="l-icon-star"></i>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__col -->
|
<!-- /.l-unit__col -->
|
||||||
<div class="l-unit__col l-unit__col--right">
|
<div class="l-unit__col l-unit__col--right">
|
||||||
|
|
|
@ -86,7 +86,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['mail-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="mail-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_COOKIE['mail-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['MAIL'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="mail"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?=$data[$key]['U_DISK']?>"
|
||||||
|
sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_SESSION['favourites']['MAIL'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?php echo $key ?>">
|
||||||
|
|
|
@ -83,7 +83,9 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['mail-acc-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="mail-acc-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?$data[$key]['U_DISK']?>" sort-star="<? if($_COOKIE['mail-acc-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key."@".$_GET['domain']?>" v_section="mail_acc"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-disk="<?$data[$key]['U_DISK']?>"
|
||||||
|
sort-star="<? if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
||||||
|
|
|
@ -81,7 +81,9 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_COOKIE['user-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="user-<?=sha1($key)?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<?if($_COOKIE['user-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($status == 'suspended') echo 'l-unit--suspended'; if($_SESSION['favourites']['USER'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="user"
|
||||||
|
sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>"
|
||||||
|
sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<?if($_SESSION['favourites']['USER'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="user[]" value="<?=$key?>">
|
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="user[]" value="<?=$key?>">
|
||||||
|
|
|
@ -119,7 +119,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_COOKIE['web-'.sha1($key)] == 1) echo ' l-unit--starred'; ?>" uniq-id="web-<?=sha1($key)?>" id="web-unit-<?=$i?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'])?>" sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_COOKIE['web-'.sha1($key)] == 1) echo '1'; else echo '0'; ?>">
|
<div class="l-unit <? if($data[$key]['SUSPENDED'] == 'yes') echo 'l-unit--suspended'; if($_SESSION['favourites']['WEB'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>" v_section="web"
|
||||||
|
id="web-unit-<?=$i?>" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'])?>" sort-name="<?=$key?>"
|
||||||
|
sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<? if($_SESSION['favourites']['WEB'][$key] == 1) echo '1'; else echo '0'; ?>">
|
||||||
<div class="l-unit-toolbar clearfix">
|
<div class="l-unit-toolbar clearfix">
|
||||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||||
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?=$key?>">
|
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="domain[]" value="<?=$key?>">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue