From 5076c08c3daced0a6d9c09ab52efe7555f2ecdd0 Mon Sep 17 00:00:00 2001 From: Alessandro Ferro <49845537+xfarrow@users.noreply.github.com> Date: Mon, 7 Mar 2022 12:52:13 +0100 Subject: [PATCH] added comments --- phpxpress/phpxpress/card.php | 39 +++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/phpxpress/phpxpress/card.php b/phpxpress/phpxpress/card.php index 18b6877..eb01deb 100644 --- a/phpxpress/phpxpress/card.php +++ b/phpxpress/phpxpress/card.php @@ -16,10 +16,16 @@ private $cardColor; private $textColor; + /* + ** https://getbootstrap.com/docs/5.1/components/card/#border + */ function setBorderColor($color){ $this->borderColor = Code::bootstrapColors($color); } + /* + ** https://getbootstrap.com/docs/5.1/components/card/#background-and-color + */ function setCardColor($color){ $this->cardColor = Code::bootstrapColors($color); } @@ -67,17 +73,31 @@ $this->fieldsArray = array($caption => $value); } + /* + ** Setting a datasource will produce a list of fields (bold caption with light value). + ** E.G. array("Color" => "Red" , "Brand" => "Ferrari" , "Horsepower" => "700HP") + ** will produce: + ** Color: Red + ** Brand: Ferrari + ** Horsepower: 700HP + */ function setDataSource($datasource){ foreach($datasource as $caption => $value){ $this->addField($caption,$value); } } + /* + ** https://getbootstrap.com/docs/5.1/components/card/#titles-text-and-links + */ function addLink($caption, $link){ $this->linksArray[$caption] = $link; } - function addArrayList(Array $list){ + /* + ** https://getbootstrap.com/docs/5.1/components/card/#list-groups + */ + function addArrayToList(Array $list){ if(isset($this->list)){ $this->list = array_merge($this->list, $list); }else{ @@ -85,7 +105,10 @@ } } - function addElementList($element){ + /* + ** https://getbootstrap.com/docs/5.1/components/card/#list-groups + */ + function addElementToList($element){ if(isset($this->list)){ array_push($this->list, $element); }else{ @@ -138,9 +161,9 @@ if(isset($this->linksArray)){ // links foreach($this->linksArray as $caption => $link){ echo ''. $caption .''; - } + } echo '

'; - } + } if(isset($this->button)) echo '' . $this->button["text"] . ''; @@ -151,10 +174,12 @@ echo ''; } + /* + ** Using this overrides the card's width (known error from Bootstrap), so you should specify a width. + ** It always has to be closed with endCardGroupLayout() + ** https://getbootstrap.com/docs/5.1/components/card/#card-groups + */ static function beginCardGroupLayout($width=36){ - /* - ** Using this overrides the card's width (known error from Bootstrap), so you should specify a width. - */ echo '
'; }