]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Do something about no icons
authorValerie Pond <redacted>
Thu, 22 Jun 2023 07:30:48 +0000 (08:30 +0100)
committerValerie Pond <redacted>
Thu, 22 Jun 2023 07:30:48 +0000 (08:30 +0100)
Classes/class-plugin-git.php
img/no-image-available.jpg [new file with mode: 0644]

index e0610ac80da945fec4285b46ece432268a201a48..4f091613643424c1e661ac07e5b85b856d0f39c4 100644 (file)
                else
                    $this->data = json_decode($response, false);
            }
-        public function ifInstalledLabel($name)
+
+
+
+        public function ifInstalledLabel($name, $installed = false)
         {
-            if (Plugins::plugin_exists($name))
+            if ($installed)
+            {   ?>
+                <div class="badge rounded-pill badge-success">Installed ✅</div>
+    <?php   }
+            else if (Plugins::plugin_exists($name))
             {
                 ?>
                     <div class="badge rounded-pill badge-success">Installed ✅</div>
                 <?php
             }
         }
-           public function do_list()
-           {
-               ?>
+
+
+
+    public function do_list()
+    {
+        ?>
 <div class="row">
-       <?php     
-               $counter = 0;
-               foreach($this->data as $p)
-               {
-                   if (is_string($p))
-                       continue;
+    <?php     
+        $counter = 0;
+
+
+        foreach($this->data as $p)
+        {
+            $installed = Plugins::plugin_exists($p->name) ? true : false;
+
+            if (is_string($p))
+                continue;
             
-                   ?>
-       <!-- Widget for plugins -->
-       <div class="card text-dark bg-light ml-4 mb-3 w-25">
-               <div class="card-header">
-                       <div class="font-weight-bold">
-                               <div><img class="mr-3" src="<?php echo $p->icon?>" height="50" width="55">
-                                       <?php echo $p->title; $this->ifInstalledLabel($p->name); ?></div>
-                       </div>
-               </div>
-               <div class="card-body">
-                       <h5 class="card-title"><?php echo $p->title ?></h5>
-                       <p class="card-text"><?php echo $p->description ?> </p>
-               </div>
-               <div class="card-footer">
-                       Author: <a href="<?php echo "mailto:".$p->contact ?? "#" ?>">
-                       <i><?php echo $p->author ?></i></a>
-                       <div class="text-right">
-                               <div class="btn btn-secondary">More Info</div>
-                               <div class="btn btn-primary">Install</div>
-                       </div>
-               </div>
-       </div>
-       <?php
-               $counter++;
-                if ($counter >= 3) // only do three per row. WARNING: untested due to not having more than 2 plugins atm...
-                {
-                    ?>
-</div>
-<div class="row"><?php
-       $counter = 0;
-       }
-       }
-       ?></div>
-<?php
-}
+            // use a default image if there was none
+            $p->icon = $p->icon ?? get_config("base_url")."img/no-image-available.jpg";
+                ?>
+        <!-- Widget for plugins -->
+        <div id="<?php echo $p->name ?>" class="<?php if ($installed) echo "installed " ?>card text-dark bg-light ml-4 mb-3 w-25">
+            <div class="card-header">
+                <div class="font-weight-bold">
+                    <div><h5><img class="mr-3" src="<?php echo $p->icon ?>" height="50" width="55">
+                        <?php echo $p->title; $this->ifInstalledLabel($p->name); ?></h5></div>
+                </div>
+            </div>
+            <div class="card-body">
+                <h5 class="card-title"><?php echo $p->title ?> <small><code>v<?php echo $p->version ?></code></small></h5>
+                <p class="card-text"><?php echo $p->description ?> </p>
+            </div>
+            <div class="card-footer d-flex justify-content-between align-items-center">
+            <ul class="list-unstyled">
+                <li class="list-item">Author: <a href="<?php echo "mailto:".$p->contact ?? "#" ?>"></li><i><?php echo $p->author ?></i></a>
+            </ul>
+            <div class="btn-group">
+                <div class="btn btn-secondary">More Info</div>
+                <div id="<?php echo $p->name ?>install" class="btn btn-primary">Install</div>
+            </div></div>
+            
+        </div>
+        <?php
+            $counter++;
+            if ($counter >= 3) // only do three per row. WARNING: untested due to not having more than 2 plugins atm...
+            {
+                ?>
+                </div>
+                <div class="row"><?php
+                $counter = 0;
+            }
+
+
+        }
+        ?></div>
+    <?php
+    }
 }
+
+?>
\ No newline at end of file
diff --git a/img/no-image-available.jpg b/img/no-image-available.jpg
new file mode 100644 (file)
index 0000000..1d5a853
Binary files /dev/null and b/img/no-image-available.jpg differ