';
+
+ $class = "card";
+
+ if(isset($this->borderColor)){
+ $class.= ' border-' . $this->borderColor;
+ }
+ if(isset($this->cardColor)){
+ $class.= ' bg-' . $this->cardColor;
+ }
+ if(isset($this->textColor)){
+ $class.= ' text-' . $this->borderColor;
+ }
+
+ echo '
';
// Image
if(isset($this->imageSource)){
@@ -75,6 +125,23 @@
}
}
+ if(isset($this->list)){
+ echo '
';
+ }
+
+ if(isset($this->linksArray)){ // links
+ foreach($this->linksArray as $caption => $link){
+ echo '
'. $caption .'';
+ }
+ echo '
';
+ }
+
if(isset($this->button))
echo '
' . $this->button["text"] . '';
diff --git a/phpxpress/phpxpress/code.php b/phpxpress/phpxpress/code.php
new file mode 100644
index 0000000..fdd5f69
--- /dev/null
+++ b/phpxpress/phpxpress/code.php
@@ -0,0 +1,37 @@
+
\ No newline at end of file
diff --git a/phpxpress/phpxpress/include.php b/phpxpress/phpxpress/include.php
index 46a837e..fda2f47 100644
--- a/phpxpress/phpxpress/include.php
+++ b/phpxpress/phpxpress/include.php
@@ -1,5 +1,8 @@
+
\ No newline at end of file