Merge branch 'master' of github.com:serghey-rodin/vesta

This commit is contained in:
Serghey Rodin 2016-11-04 11:43:00 +02:00
commit 45f0000a55
55 changed files with 135 additions and 144 deletions

View file

@ -24,6 +24,7 @@ json_list() {
echo "{" echo "{"
for str in $logs; do for str in $logs; do
eval $str eval $str
CMD=${CMD//\"/\\\"}
echo -n ' "'$ID'": { echo -n ' "'$ID'": {
"CMD": "'$CMD'", "CMD": "'$CMD'",
"UNDO": "'$UNDO'", "UNDO": "'$UNDO'",

View file

@ -556,6 +556,7 @@ if [ "$clamd" = 'no' ]; then
fi fi
if [ "$spamd" = 'no' ]; then if [ "$spamd" = 'no' ]; then
software=$(echo "$software" | sed -e "s/spamassassin//") software=$(echo "$software" | sed -e "s/spamassassin//")
software=$(echo "$software" | sed -e "s/libmail-dkim-perl//")
fi fi
if [ "$dovecot" = 'no' ]; then if [ "$dovecot" = 'no' ]; then
software=$(echo "$software" | sed -e "s/dovecot-imapd//") software=$(echo "$software" | sed -e "s/dovecot-imapd//")

View file

@ -27,6 +27,8 @@ for ip in $(ls /usr/local/vesta/data/ips); do
done done
echo "</IfModule>" >> $conf echo "</IfModule>" >> $conf
sed -i "s/LogFormat \"%h/LogFormat \"%a/g" /etc/apache2/apache2.conf
# Restarting apache # Restarting apache
/usr/sbin/apachectl restart > /dev/null 2>&1 /usr/sbin/apachectl restart > /dev/null 2>&1

View file

@ -595,15 +595,6 @@ a {
text-decoration: line-through; text-decoration: line-through;
} }
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.clearfix:before, .clearfix:before,
.clearfix:after { .clearfix:after {
content: ''; content: '';
@ -839,8 +830,6 @@ input[type="checkbox"] {
font-size: 12px; font-size: 12px;
padding: 0; padding: 0;
color: #7f7f7f; color: #7f7f7f;
max-height: 95%;
overflow: auto;
} }
.notification-container .unseen { .notification-container .unseen {
color: #ABABAB; color: #ABABAB;
@ -851,33 +840,21 @@ input[type="checkbox"] {
border-bottom: 1px solid #555; border-bottom: 1px solid #555;
padding: 10px 15px 24px; padding: 10px 15px 24px;
} }
.notification-container li.empty {
padding-top: 50px;
height: 50px;
font-size: 15px;
font-style: italic;
text-align: center;
color: #999;
}
.notification-container .mark-seen { .notification-container .mark-seen {
background: rgba(0, 0, 0, 0) url("/images/sprite.png?1446554103") repeat scroll -426px 165px; background-color: #abc04b;
border: 3px solid #454545; border: 2px solid #454545;
border-radius: 10px;
cursor: pointer; cursor: pointer;
display: none; display: none;
float: right; float: right;
height:11px; height: 7px;
margin-right: -5px; margin-right: -5px;
margin-top: 0; margin-top: 0;
width: 11px; width: 7px;
opacity: 0.5;
border-radius: 10px;
} }
.notification-container .mark-seen:hover { .notification-container .mark-seen:hover {
background-color: #333; background-color: #333;
border-color: #333; border-color: #abc04b;
opacity: 0.8;
} }
.notification-container .mark-seen:active { .notification-container .mark-seen:active {
background-color: #777; background-color: #777;
@ -1151,13 +1128,13 @@ div.l-content > div.l-separator:nth-of-type(4) {
.l-sort-toolbar td.toggle-all { .l-sort-toolbar td.toggle-all {
padding-top: 7px; padding-top: 7px;
padding-right: 40px; padding-right: 20px;
} }
.l-sort-toolbar .sort-by { .l-sort-toolbar .sort-by {
cursor: pointer; cursor: pointer;
padding-top: 7px; padding-top: 7px;
padding-right: 40px; padding-left: 40px;
} }
.l-sort-toolbar .sort-by:hover { .l-sort-toolbar .sort-by:hover {
color: #555; color: #555;
@ -1369,9 +1346,11 @@ div.l-content > div.l-separator:nth-of-type(4) {
} }
.l-unit--outdated { .units .l-unit.l-unit--outdated {
background-color: #9B3D35; background-color: #ffcaca;
color: #fff; color: #555;
border-left: 5px solid #ff6f6f;
border-bottom: 1px solid #fff;
} }
.l-unit--suspended .l-unit__name, .l-unit--suspended .l-unit__name,
@ -1381,6 +1360,13 @@ div.l-content > div.l-separator:nth-of-type(4) {
color: #c0c0c0; color: #c0c0c0;
} }
.l-unit--outdated .l-unit__name {
color: #333;
}
.l-unit--outdated b {
color: #555;
}
.l-unit--suspended .l-percent { .l-unit--suspended .l-percent {
border-color: #fff; border-color: #fff;
} }
@ -1404,7 +1390,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
.l-unit--outdated.selected { .l-unit--outdated.selected {
background: #765D5D !important; background: #765D5D !important;
color: #FEF482 !important; color: #333 !important;
} }
@ -1417,7 +1403,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
.l-unit--suspended.selected .l-percent__fill, .l-unit--suspended.selected .l-percent__fill,
.l-unit--suspended.selected .l-unit__name, .l-unit--suspended.selected .l-unit__name,
.l-unit--suspended.selected .l-unit__name span { .l-unit--suspended.selected .l-unit__name span {
color: #b2ac87 !important; color: #333 !important;
} }
.l-unit.selected .l-percent { .l-unit.selected .l-percent {
@ -1507,7 +1493,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
} }
.l-unit.l-unit--outdated .l-unit__date { .l-unit.l-unit--outdated .l-unit__date {
color: #fff7ae; color: #d24c4c;
font-size: 10px; font-size: 10px;
letter-spacing: 3px; letter-spacing: 3px;
text-transform: uppercase; text-transform: uppercase;
@ -3122,6 +3108,7 @@ form#vstobjects.suspended {
.l-sort-toolbar__search-box { .l-sort-toolbar__search-box {
float: right !important; float: right !important;
padding-top: 3px; padding-top: 3px;
padding-right: 0 !important;
} }
.ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) { .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
-background-color: #dfdedd; -background-color: #dfdedd;

View file

@ -584,6 +584,7 @@ $LANG['ar'] = array(
'Starred' => 'المحدد بنجمة', 'Starred' => 'المحدد بنجمة',
'Name' => 'الاسم', 'Name' => 'الاسم',
'save to favorites' => 'save to favorites',
'File Manager' => 'مدير الملفات', 'File Manager' => 'مدير الملفات',
'size' => 'الحجم', 'size' => 'الحجم',
@ -751,8 +752,6 @@ $LANG['ar'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
// Texts below doesn't exist in en.php // Texts below doesn't exist in en.php
'%s rule' => 'قواعد %s', '%s rule' => 'قواعد %s',
'MainDomain' => 'النطاق الرئيسي', 'MainDomain' => 'النطاق الرئيسي',

View file

@ -584,6 +584,7 @@ $LANG['bs'] = array(
'Starred' => 'Označen zvjezdicom', 'Starred' => 'Označen zvjezdicom',
'Name' => 'Ime', 'Name' => 'Ime',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'veličina', 'size' => 'veličina',
@ -750,5 +751,4 @@ $LANG['bs'] = array(
'maximum characters length, including prefix' => 'maksimalna dužina sme biti %s karaktera, uključujući i prefix', 'maximum characters length, including prefix' => 'maksimalna dužina sme biti %s karaktera, uključujući i prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,8 @@ $LANG['cn'] = array(
'Starred' => '星标', 'Starred' => '星标',
'Name' => '名称', 'Name' => '名称',
'save to favorites' => 'save to favorites',
'File Manager' => '文件管理', 'File Manager' => '文件管理',
'type' => '类型', 'type' => '类型',
'size' => '大小', 'size' => '大小',
@ -751,5 +753,4 @@ $LANG['cn'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['cz'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -752,5 +753,4 @@ $LANG['cz'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -586,6 +586,7 @@ $LANG['da'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Navn', 'Name' => 'Navn',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -753,5 +754,4 @@ $LANG['da'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['de'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -751,5 +752,4 @@ $LANG['de'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['el'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -752,5 +753,4 @@ $LANG['el'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['en'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -751,5 +752,4 @@ $LANG['en'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['es'] = array(
'Starred' => 'Favorito', 'Starred' => 'Favorito',
'Name' => 'Nombre', 'Name' => 'Nombre',
'save to favorites' => 'save to favorites',
'File Manager' => 'Editor de Archivos', 'File Manager' => 'Editor de Archivos',
'size' => 'tamaño', 'size' => 'tamaño',
@ -749,5 +750,4 @@ $LANG['es'] = array(
'maximum characters length, including prefix' => 'usar un máximo de %s, incluyendo prefijo', 'maximum characters length, including prefix' => 'usar un máximo de %s, incluyendo prefijo',
'no notifications' => 'no notifications',
); );

View file

@ -587,6 +587,7 @@ $LANG['fa'] = [
'Starred' => 'ستاره دار', 'Starred' => 'ستاره دار',
'Name' => 'نام', 'Name' => 'نام',
'save to favorites' => 'save to favorites',
'File Manager' => 'مدیریت پرونده', 'File Manager' => 'مدیریت پرونده',
'size' => 'اندازه', 'size' => 'اندازه',
@ -754,8 +755,6 @@ $LANG['fa'] = [
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
// Texts below doesn't exist in en.php // Texts below doesn't exist in en.php
'70 خط اخر %s.%s.log' => 'هفتاد خط انتهايي از %s.%s.log', '70 خط اخر %s.%s.log' => 'هفتاد خط انتهايي از %s.%s.log',
]; ];

View file

@ -586,6 +586,7 @@ $LANG['fi'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Nimi', 'Name' => 'Nimi',
'save to favorites' => 'save to favorites',
'File Manager' => 'Tiedostonhallinta', 'File Manager' => 'Tiedostonhallinta',
'size' => 'koko', 'size' => 'koko',
@ -753,7 +754,6 @@ $LANG['fi'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
// Texts below doesn't exist in en.php // Texts below doesn't exist in en.php
'traffic' => 'tiedonsiirto', 'traffic' => 'tiedonsiirto',
'disk' => 'levytila', 'disk' => 'levytila',

View file

@ -584,6 +584,7 @@ $LANG['fr'] = array(
'Starred' => 'Favoris', 'Starred' => 'Favoris',
'Name' => 'Nom', 'Name' => 'Nom',
'save to favorites' => 'save to favorites',
'File Manager' => 'Fichiers', 'File Manager' => 'Fichiers',
'size' => 'taille', 'size' => 'taille',
@ -751,7 +752,6 @@ $LANG['fr'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
// Texts below doesn't exist in en.php // Texts below doesn't exist in en.php
'disk' => 'disque', 'disk' => 'disque',
'traffic' => 'traffic', 'traffic' => 'traffic',

View file

@ -588,6 +588,7 @@ $LANG['hu'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -755,7 +756,6 @@ $LANG['hu'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
// Texts below doesn't exist in en.php // Texts below doesn't exist in en.php
'Bandwidth Usage eth1' => 'eth1 sávszélesség használat', 'Bandwidth Usage eth1' => 'eth1 sávszélesség használat',
); );

View file

@ -587,6 +587,7 @@ $LANG['id'] = array(
'Starred' => 'Bintangi', 'Starred' => 'Bintangi',
'Name' => 'Nama', 'Name' => 'Nama',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'ukuran', 'size' => 'ukuran',
@ -754,5 +755,4 @@ $LANG['id'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['it'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -752,5 +753,4 @@ $LANG['it'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['ja'] = array(
'Starred' => 'スター付き', 'Starred' => 'スター付き',
'Name' => '名前', 'Name' => '名前',
'save to favorites' => 'save to favorites',
'File Manager' => 'ファイルマネージャー', 'File Manager' => 'ファイルマネージャー',
'size' => '容量', 'size' => '容量',
@ -751,5 +752,4 @@ $LANG['ja'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['ka'] = array(
'Starred' => 'ვარსკვლავებით', 'Starred' => 'ვარსკვლავებით',
'Name' => 'სახელით', 'Name' => 'სახელით',
'save to favorites' => 'save to favorites',
'File Manager' => 'ფაილები', 'File Manager' => 'ფაილები',
'type' => 'ტიპი', 'type' => 'ტიპი',
@ -751,5 +752,4 @@ $LANG['ka'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['nl'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -752,5 +753,4 @@ $LANG['nl'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['no'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -752,5 +753,4 @@ $LANG['no'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['pl'] = array(
'Starred' => 'Gwiazdka', 'Starred' => 'Gwiazdka',
'Name' => 'Nazwa', 'Name' => 'Nazwa',
'save to favorites' => 'save to favorites',
'File Manager' => 'Manager Plików', 'File Manager' => 'Manager Plików',
'size' => 'rozmiar', 'size' => 'rozmiar',
@ -751,5 +752,4 @@ $LANG['pl'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['pt-BR'] = array(
'Starred' => 'Estreado', 'Starred' => 'Estreado',
'Name' => 'Nome', 'Name' => 'Nome',
'save to favorites' => 'save to favorites',
'File Manager' => 'Gerenciador de Arquivos', 'File Manager' => 'Gerenciador de Arquivos',
'size' => 'tamanho', 'size' => 'tamanho',
@ -751,5 +752,4 @@ $LANG['pt-BR'] = array(
'maximum characters length, including prefix' => 'comprimento máximo de % caracteres, incluindo o prefixo', 'maximum characters length, including prefix' => 'comprimento máximo de % caracteres, incluindo o prefixo',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['pt'] = array(
'Starred' => 'Estreado', 'Starred' => 'Estreado',
'Name' => 'Nome', 'Name' => 'Nome',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'tamanho', 'size' => 'tamanho',
@ -751,5 +752,4 @@ $LANG['pt'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -586,6 +586,7 @@ $LANG['ro'] = array(
'Starred' => 'Importante', 'Starred' => 'Importante',
'Name' => 'Nume', 'Name' => 'Nume',
'save to favorites' => 'save to favorites',
'File Manager' => 'Manager de fișiere', 'File Manager' => 'Manager de fișiere',
'size' => 'mărime', 'size' => 'mărime',
@ -753,5 +754,4 @@ $LANG['ro'] = array(
'maximum characters length, including prefix' => 'maximum %s caractere, incluzând prefixul', 'maximum characters length, including prefix' => 'maximum %s caractere, incluzând prefixul',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['ru'] = array(
'Starred' => 'Избранные', 'Starred' => 'Избранные',
'Name' => 'Имя', 'Name' => 'Имя',
'save to favorites' => 'добавить в избранное',
'File Manager' => 'Файлы', 'File Manager' => 'Файлы',
'size' => 'размер', 'size' => 'размер',
@ -752,5 +753,4 @@ $LANG['ru'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['se'] = array(
'Starred' => 'Starred', 'Starred' => 'Starred',
'Name' => 'Name', 'Name' => 'Name',
'save to favorites' => 'save to favorites',
'File Manager' => 'File Manager', 'File Manager' => 'File Manager',
'size' => 'size', 'size' => 'size',
@ -751,5 +752,4 @@ $LANG['se'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['tr'] = array(
'Starred' => 'Yıldızlı', 'Starred' => 'Yıldızlı',
'Name' => 'İsim', 'Name' => 'İsim',
'save to favorites' => 'save to favorites',
'File Manager' => 'Dosya Yöneticisi', 'File Manager' => 'Dosya Yöneticisi',
'size' => 'boyut', 'size' => 'boyut',
@ -752,5 +753,4 @@ $LANG['tr'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -608,6 +608,8 @@ $LANG['tw'] = array(
'Starred' => '加註星號', 'Starred' => '加註星號',
'Name' => '名稱', 'Name' => '名稱',
'save to favorites' => 'save to favorites',
'File Manager' => '檔案管理器', 'File Manager' => '檔案管理器',
'size' => '大小', 'size' => '大小',
'date' => '日期', 'date' => '日期',
@ -774,5 +776,4 @@ $LANG['tw'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -585,6 +585,7 @@ $LANG['ua'] = array(
'Starred' => 'Вибране', 'Starred' => 'Вибране',
'Name' => "Ім'я", 'Name' => "Ім'я",
'save to favorites' => 'save to favorites',
'File Manager' => 'Файловий менеджер', 'File Manager' => 'Файловий менеджер',
'size' => 'розмір', 'size' => 'розмір',
@ -752,5 +753,4 @@ $LANG['ua'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -584,6 +584,7 @@ $LANG['vi'] = array(
'Starred' => 'Đánh dấu', 'Starred' => 'Đánh dấu',
'Name' => 'Tên', 'Name' => 'Tên',
'save to favorites' => 'save to favorites',
'File Manager' => 'Quản lý tệp', 'File Manager' => 'Quản lý tệp',
'size' => 'size', 'size' => 'size',
@ -750,5 +751,4 @@ $LANG['vi'] = array(
'maximum characters length, including prefix' => 'maximum %s characters length, including prefix', 'maximum characters length, including prefix' => 'maximum %s characters length, including prefix',
'no notifications' => 'no notifications',
); );

View file

@ -19,7 +19,7 @@
} }
?> ?>
</td> </td>
<td class="l-sort-toolbar__search-box"> <td class="l-sort-toolbar__search-box step-left">
<form action="/search/" method="get"> <form action="/search/" method="get">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
<input type="text" name="q" class="search-input" value="<? echo isset($_POST['q']) ? htmlspecialchars($_POST['q']) : '' ?>" /> <input type="text" name="q" class="search-input" value="<? echo isset($_POST['q']) ? htmlspecialchars($_POST['q']) : '' ?>" />
@ -30,10 +30,7 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by"> <td class="">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td class="step-right">
<form action="/bulk/cron/" method="post" id="objects"> <form action="/bulk/cron/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
<div class="l-select"> <div class="l-select">
@ -48,6 +45,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -122,7 +122,7 @@ sort-star="<? if($_SESSION['favourites']['CRON'][$key] == 1) echo '1'; else echo
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -52,9 +52,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/db/" method="post" id="objects"> <form action="/bulk/db/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -68,6 +65,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -150,7 +150,7 @@ sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" so
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -23,9 +23,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/dns/" method="post" id="objects"> <form action="/bulk/dns/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -39,6 +36,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -112,7 +112,7 @@ sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$ke
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>

View file

@ -96,7 +96,7 @@ v_unit_id="<?=$key?>" v_section="dns_rec">
<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-small-top"> <div class="text-center jump-small-top">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -28,9 +28,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Action')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/firewall/" method="post" id="objects"> <form action="/bulk/firewall/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -42,6 +39,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Action')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -111,7 +111,7 @@ sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-comment="<?=$data[$k
<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"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -24,9 +24,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/ip/" method="post" id="objects"> <form action="/bulk/ip/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -39,6 +36,9 @@
</div> </div>
<input type="submit" class="l-sort-toolbar__filter-apply" value="" /> <input type="submit" class="l-sort-toolbar__filter-apply" value="" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -92,7 +92,7 @@ sort-owner="<?=$data[$key]['OWNER']?>" sort-star="<? if($_SESSION['favourites'][
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -30,9 +30,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/mail/" method="post" id="objects"> <form action="/bulk/mail/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -46,6 +43,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -131,7 +131,7 @@ sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_SESSION['favouri
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -29,9 +29,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/mail/" method="post" id="objects"> <form action="/bulk/mail/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -45,6 +42,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -124,7 +124,7 @@ sort-star="<? if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] =
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -20,9 +20,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/package/" method="post" id="objects"> <form action="/bulk/package/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -34,6 +31,9 @@
</div> </div>
<input type="submit" class="l-sort-toolbar__filter-apply" value="" /> <input type="submit" class="l-sort-toolbar__filter-apply" value="" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -88,7 +88,7 @@ sort-star="<?if($_SESSION['favourites']['PACKAGE'][$key] == 1) echo '1'; else ec
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -182,7 +182,7 @@
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -28,9 +28,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/user/" method="post" id="objects"> <form action="/bulk/user/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -51,6 +48,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -131,7 +131,7 @@ sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DI
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -23,9 +23,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/web/" method="post" id="objects"> <form action="/bulk/web/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -39,6 +36,9 @@
</div> </div>
<input type="submit" class="l-sort-toolbar__filter-apply" value=""/> <input type="submit" class="l-sort-toolbar__filter-apply" value=""/>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -168,7 +168,7 @@ sort-name="<?=$key?>" sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-dis
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -30,10 +30,7 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by"> <td class="">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td class="step-right">
<form action="/bulk/cron/" method="post" id="objects"> <form action="/bulk/cron/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
<div class="l-select"> <div class="l-select">
@ -46,6 +43,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -109,7 +109,7 @@ sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-nam
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -53,9 +53,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/db/" method="post" id="objects"> <form action="/bulk/db/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -67,6 +64,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -139,7 +139,7 @@ sort-user="<?=$data[$key]['DBUSER']?>" sort-server="<?=$data[$key]['HOST']?>" so
</div> </div>
<div class="l-unit__suspended"><?=__('suspended')?></div> <div class="l-unit__suspended"><?=__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -23,9 +23,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/dns/" method="post"> <form action="/bulk/dns/" method="post">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -37,6 +34,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -100,7 +100,7 @@ sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$ke
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -94,7 +94,7 @@
<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-small-top"> <div class="text-center jump-small-top">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -30,9 +30,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/mail/" method="post" id="objects"> <form action="/bulk/mail/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -44,6 +41,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -119,7 +119,7 @@ sort-accounts="<?=$data[$key]['ACCOUNTS']?>" sort-star="<? if($_SESSION['favouri
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -29,9 +29,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/mail/" method="post" id="objects"> <form action="/bulk/mail/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -43,6 +40,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -112,7 +112,7 @@ sort-star="<? if($_SESSION['favourites']['MAIL_ACC'][$key."@".$_GET['domain']] =
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -147,7 +147,7 @@
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -71,7 +71,7 @@
<?=translate_date($key)?> <?=translate_date($key)?>
</div> </div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -28,9 +28,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/user/" method="post" id="objects"> <form action="/bulk/user/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -49,6 +46,9 @@
</div> </div>
<input type="submit" value="" class="l-sort-toolbar__filter-apply" /> <input type="submit" value="" class="l-sort-toolbar__filter-apply" />
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -119,7 +119,7 @@ sort-disk="<?=$data[$key]['U_DISK']?>" sort-star="<?if($_SESSION['favourites']['
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->

View file

@ -23,9 +23,6 @@
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label> <label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
<td> <td>
<form action="/bulk/web/" method="post" id="objects"> <form action="/bulk/web/" method="post" id="objects">
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" /> <input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
@ -37,6 +34,9 @@
</div> </div>
<input type="submit" class="l-sort-toolbar__filter-apply" value=""/> <input type="submit" class="l-sort-toolbar__filter-apply" value=""/>
</td> </td>
<td class="sort-by">
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
</td>
</tr> </tr>
</table> </table>
<!-- --> <!-- -->
@ -158,7 +158,7 @@ sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DI
</div> </div>
<div class="l-unit__suspended"><?__('suspended')?></div> <div class="l-unit__suspended"><?__('suspended')?></div>
<div class="text-center"> <div class="text-center">
<i class="l-icon-star"></i> <i class="l-icon-star" title="<?=__('save to favorites')?>"></i>
</div> </div>
</div> </div>
<!-- /.l-unit__col --> <!-- /.l-unit__col -->