Footer visibile solo sull'ultima pagina, sempre che non abbia deciso di nasconderlo
This commit is contained in:
parent
67d7a5ca62
commit
df2e6ba3c3
|
@ -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');
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue