Jake Vanderwerf
2 days ago 235ce5716edc2f7cbe80fdccf26eac7269587839
inc/utility/Image.php
@@ -21,6 +21,7 @@
      $this->imgData = Cache::for('imageData')->connect('post');
      if (JVB_TESTING) {
         $this->cache->flush();
         $this->imgData->flush();
      }
   }
@@ -80,7 +81,7 @@
               $postSlug = jvbNoBase($tax->taxonomy);
            }elseif (is_post_type_archive()) {
               $obj = get_queried_object();
               $postSlug = jvbNoBase($obj->post_type);
               $postSlug = jvbNoBase($obj->name);
            }
         }
@@ -95,7 +96,7 @@
            $postSlug,
            $postSlug,
            $imgSlug,
            $full[0]
            $full[0]??''
         );
         // Add gallery attributes to img tag
@@ -159,4 +160,43 @@
      return (new Image)->getImageData($imgID);
   }
   public static function gallery(string $ids, ?string $type = null):string
   {
      $ids = explode(',', $ids);
      $inner = implode('', array_map(function ($ID) {
         $caption = wp_get_attachment_caption($ID);
         if (!empty($caption)) {
            $caption = sprintf('<figcaption>%s</figcaption', $caption);
         }
         return sprintf(
            '<li><figure>%s%s</figure></li>',
            self::image($ID),
            $caption
         );
      }, $ids));
      return sprintf(
         '<ul class="gallery%s">%s</ul>',
         $type? ' '.$type : '',
         $inner
      );
   }
   public static function image(int $id, string $start = 'tiny', string $replace = 'large', bool $addLink = true, ?string $postSlug = null):string
   {
      return (new Image)->formatImage($id, $start, $replace, $addLink, $postSlug);
   }
   public static function SVG(string $slug):string
   {
      $cache = Cache::for('svgs');
      if (JVB_TESTING) {
         $cache->flush();
      }
      return $cache->remember(
         $slug,
         function() use ($slug) {
            $filename = JVB_CHILD_DIR.'/assets/icons/'.$slug.'.svg';
            return file_exists($filename) ? file_get_contents($filename) : '';
         }
      );
   }
}