mirror of
https://github.com/xfarrow/phpxpress.git
synced 2025-02-17 20:40:42 +01:00
bugfix
This commit is contained in:
parent
95822c8bb2
commit
3766a28ae8
@ -1,5 +1,16 @@
|
|||||||
<?php
|
<?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";
|
include "include.php";
|
||||||
|
|
||||||
class BreadCrumb{
|
class BreadCrumb{
|
||||||
|
@ -1,4 +1,16 @@
|
|||||||
<?php
|
<?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";
|
include "include.php";
|
||||||
|
|
||||||
class Card{
|
class Card{
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
<script type="text/javascript" src="../bootstrap-5.1.3-dist/js/bootstrap.bundle.js"></script>
|
<script type="text/javascript" src="../bootstrap-5.1.3-dist/js/bootstrap.bundle.js"></script>
|
||||||
<?php
|
<?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";
|
include "include.php";
|
||||||
|
|
||||||
class Dropdown{
|
class Dropdown{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PhpXpress
|
* PhpXpress v1.0
|
||||||
*
|
*
|
||||||
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
|
* @see https://github.com/xfarrow/phpxpress The PhpXpress GitHub project
|
||||||
*
|
*
|
||||||
@ -191,7 +191,7 @@
|
|||||||
*/
|
*/
|
||||||
if(isset($this -> columnCaptions)){
|
if(isset($this -> columnCaptions)){
|
||||||
foreach($dataSource as &$row){
|
foreach($dataSource as &$row){
|
||||||
foreach($this -> columnCaptions as $captionName){
|
foreach(array_reverse($this -> columnCaptions) as $captionName){
|
||||||
if($is_array_of_arrays){
|
if($is_array_of_arrays){
|
||||||
$row = array($captionName => null) + (array)$row; // append the already inserted captions at the beginning
|
$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
|
//$element->{$captionName} = null; // append the already inserted captions at the end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user