From e9967fa22781d922ba4eb8fb44fe72d200ac4b14 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 10 Nov 2025 21:04:10 +0000
Subject: [PATCH] =IconsManager.php update

---
 inc/helpers/renderFields.php |   38 +++++++++++++++++++-------------------
 1 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/inc/helpers/renderFields.php b/inc/helpers/renderFields.php
index 16bb348..8786204 100644
--- a/inc/helpers/renderFields.php
+++ b/inc/helpers/renderFields.php
@@ -79,41 +79,41 @@
             $url = $link['url'];
             switch (true) {
                 case strpos($url, 'facebook'):
-                    $i = jvbIcon('facebook');
+                    $i = jvbIcon('facebook-logo');
                     break;
                 case strpos($url, 'instagram'):
-                    $i = jvbIcon('instagram');
+                    $i = jvbIcon('instagram-logo');
                     break;
                 case strpos($url, 'tiktok'):
-                    $i = jvbIcon('tiktok');
+                    $i = jvbIcon('tiktok-logo');
                     break;
                 case strpos($url, 'x.com'):
                     $i = jvbIcon('x');
                     break;
                 case strpos($url, 'youtube'):
-                    $i = jvbIcon('youtube');
+                    $i = jvbIcon('youtube-logo');
                     break;
                 case strpos($url, 'mastadon'):
-                    $i = jvbIcon('mastadon');
+                    $i = jvbIcon('mastadon-logo');
                     break;
                 case strpos($url, 'fediverse'):
                 case strpos($url, 'bluesky'):
-                    $i = jvbIcon('fediverse');
+                    $i = jvbIcon('fediverse-logo');
                     break;
                 case strpos($url, 'linktree'):
-                    $i = jvbIcon('linktree');
+                    $i = jvbIcon('linktree-logo');
                     break;
                 case strpos($url, 'snapchat'):
-                    $i = jvbIcon('snapchat');
+                    $i = jvbIcon('snapchat-logo');
                     break;
                 case strpos($url, 'twitch'):
-                    $i = jvbIcon('twitch');
+                    $i = jvbIcon('twitch-logo');
                     break;
                 case strpos($url, 'threads'):
-                    $i = jvbIcon('threads');
+                    $i = jvbIcon('threads-logo');
                     break;
                 case strpos($url, 'twitter'):
-                    $i = jvbIcon('twitter');
+                    $i = jvbIcon('twitter-logo');
                     break;
                 default:
                     $i = jvbIcon('link');
@@ -158,7 +158,7 @@
             switch ($p) {
                 case 'text':
                     $link = 'sms:+1'.$phone.';?body='.rawurlencode('Hey! I found you on edmonton.ink, and I wanted to reach out.');
-                    $label = jvbIcon('text').'<span>Text</span>';
+                    $label = jvbIcon('chat').'<span>Text</span>';
                     break;
                 case 'call':
                     $link = 'tel:+1'.$phone;
@@ -167,7 +167,7 @@
                 case 'email':
                     $link = 'mailto:'.$meta->getValue('email').'?subject='.rawurlencode('Contact from edmonton.ink').'&body='.rawurlencode('Hey,
         I found you on edmonton.ink, and I wanted to reach out!');
-                    $label = jvbIcon('email').'<span>Email</span>';
+                    $label = jvbIcon('envelope').'<span>Email</span>';
                     break;
             }
             if ($link) {
@@ -373,11 +373,11 @@
 					</div>
 					<div class="group-actions">
 						<button type="button" data-action="add-to-group" title="Add selected uploads to this group">
-							<?= jvbIcon('add') ?>
+							<?= jvbIcon('plus-square') ?>
 							Add Here
 						</button>
 						<button type="button" data-action="delete-group" title="Delete group">
-							<?= jvbIcon('delete') ?>
+							<?= jvbIcon('trash') ?>
 							Delete Group
 						</button>
 					</div>
@@ -407,7 +407,7 @@
 				</div>
 
 				<button type="button" data-action="remove-from-group" title="Remove from Group">
-					<?=jvbIcon('delete')?>
+					<?=jvbIcon('trash')?>
 				</button>
 			</div>
 		</template>
@@ -418,7 +418,7 @@
 				</div>
 				<div class="selection-controls">
 					<button type="button" data-action="add-to-group">
-						<?= jvbIcon('add') ?>
+						<?= jvbIcon('plus-square') ?>
 						New Group
 					</button>
 				</div>
@@ -472,11 +472,11 @@
 						</div>
 						<div class="m-actions row nowrap">
 							<button type="button" data-action="restore">
-								<?= jvbIcon('restore') ?>
+								<?= jvbIcon('arrow-counter-clockwise') ?>
 								Restore Selected
 							</button>
 							<button type="button" data-action="clear-cache" title="Clear cache and close window">
-								<?= jvbIcon('close') ?>
+								<?= jvbIcon('x') ?>
 								Clear Cache
 							</button>
 						</div>

--
Gitblit v1.10.0