responsive account list

This commit is contained in:
Roland Gruber 2018-10-23 06:51:23 +02:00
parent 1b198403d7
commit b0edc4c6f9
1 changed files with 2 additions and 23 deletions

View File

@ -1,6 +1,5 @@
<?php
use LAM\TYPES\ConfiguredType;
use phpseclib\Net\SFTP\Stream;
/*
@ -173,7 +172,7 @@ class lamList {
// get some parameters
$this->listGetParams();
// print HTML head
$this->listPrintHeader();
$this->printHeader();
// print messages when redirected from other pages
$this->listPrintRedirectMessages();
// refresh data if needed
@ -220,7 +219,7 @@ class lamList {
$this->listPrintTableHeader();
echo "</table><br>\n";
}
$this->listPrintFooter();
$this->printFooter();
}
/**
@ -873,16 +872,6 @@ class lamList {
// only used by subclasses
}
/**
* Prints the HTML header.
*
* @deprecated
*/
protected function listPrintHeader() {
include '../main_header.php';
$this->printHeaderContent();
}
/**
* Prints the header part of the page.
*/
@ -898,16 +887,6 @@ class lamList {
// implemented by child classes if needed
}
/**
* Prints the HTML footer.
*
* @deprecated
*/
protected function listPrintFooter() {
$this->printFooterContent();
include '../main_footer.php';
}
/**
* Prints the footer area of the page.
*/