Footer visibile solo sull'ultima pagina, sempre che non abbia deciso di nasconderlo

This commit is contained in:
Luca 2024-05-20 12:55:29 +02:00
parent 67d7a5ca62
commit df2e6ba3c3
5 changed files with 11 additions and 6 deletions

View File

@ -652,8 +652,12 @@ class Prints
$report = '';
}
// Footer per l'ultima pagina
if (!empty($options['last-page-footer'])) {
// Footer visibile solo sull'ultima pagina, sempre che non abbia deciso di nasconderlo
if (!empty($options['last-page-footer']) && empty($options['hide-footer'])) {
//Definisco qual'è l'ultima pagina
$is_last_page = true;
// Generazione dei contenuti del footer
ob_start();
$print_footer = self::filepath($id_print, 'footer.php');

View File

@ -17,7 +17,8 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
if (!empty($options['last-page-footer'])) {
//Se non è l'ultima pagina, oppure è l'ultima pagina ma ho scelto di nascondere il footer
if (!$is_last_page) {
return;
}

View File

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
if (!empty($options['last-page-footer'])) {
if (!$is_last_page) {
return;
}

View File

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
if (!empty($options['last-page-footer'])) {
if (!$is_last_page) {
return;
}

View File

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
if (!empty($options['last-page-footer'])) {
if (!$is_last_page) {
return;
}