mirror of https://github.com/xfarrow/phpxpress.git
bugfix
This commit is contained in:
parent
95822c8bb2
commit
3766a28ae8
|
@ -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{
|
||||
|
|
|
@ -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{
|
||||
|
|
|
@ -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{
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue