This commit is contained in:
Alessandro Ferro 2022-07-19 14:42:41 +02:00
parent 95822c8bb2
commit 3766a28ae8
4 changed files with 37 additions and 2 deletions

View File

@ -1,5 +1,16 @@
<?php
/**
* PhpXpress v1.0
*
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
*
* @author Alessandro Ferro <>
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
include "include.php";
class BreadCrumb{

View File

@ -1,4 +1,16 @@
<?php
/**
* PhpXpress v1.0
*
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
*
* @author Alessandro Ferro <>
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
include "include.php";
class Card{

View File

@ -1,5 +1,17 @@
<script type="text/javascript" src="../bootstrap-5.1.3-dist/js/bootstrap.bundle.js"></script>
<?php
/**
* PhpXpress v1.0
*
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
*
* @author Alessandro Ferro <>
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
include "include.php";
class Dropdown{

View File

@ -1,7 +1,7 @@
<?php
/**
* PhpXpress
* PhpXpress v1.0
*
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
*
@ -191,7 +191,7 @@
*/
if(isset($this -> columnCaptions)){
foreach($dataSource as &$row){
foreach($this -> columnCaptions as $captionName){
foreach(array_reverse($this -> columnCaptions) as $captionName){
if($is_array_of_arrays){
$row = array($captionName => null) + (array)$row; // append the already inserted captions at the beginning
//$element->{$captionName} = null; // append the already inserted captions at the end