From 1027291d3af570aab2de3aeb779759b15fe3d3ec Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 30 Sep 2025 04:59:58 +0000
Subject: [PATCH] Initial Setup

---
 taxonomies/_setup.php |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/taxonomies/setup.php b/taxonomies/_setup.php
similarity index 71%
rename from taxonomies/setup.php
rename to taxonomies/_setup.php
index fb46b2e..8979a2b 100644
--- a/taxonomies/setup.php
+++ b/taxonomies/_setup.php
@@ -20,24 +20,24 @@
  *             -> add use_in_stats (bool) to use the field in user statistics
  */
 
-require(AJV_DIR . '/taxonomies/city.php');
-require(AJV_DIR . '/taxonomies/form.php');
-require(AJV_DIR . '/taxonomies/media.php');
-require(AJV_DIR . '/taxonomies/progress.php');
+require(AJV_DIR . '/taxonomies/age.php');
+require(AJV_DIR . '/taxonomies/body-part.php');
+require(AJV_DIR . '/taxonomies/goal.php');
+require(AJV_DIR . '/taxonomies/skin-type.php');
 require(AJV_DIR . '/taxonomies/style.php');
-require(AJV_DIR . '/taxonomies/target.php');
 require(AJV_DIR . '/taxonomies/theme.php');
+require(AJV_DIR . '/taxonomies/timeline.php');
 
-//add_filter('jvb_taxonomy', 'ajv_taxonomy');
-function ajv_taxonomy():array
+add_filter('jvb_taxonomy', 'altr_taxonomy');
+function altr_taxonomy():array
 {
     return [
-        'city'      => ajv_city(),
-        'style'     => ajv_style(),
-        'theme'     => ajv_theme(),
-        'form'      => ajv_form(),
-        'medium'    => ajv_media(),
-        'target'    => ajv_target(),
-        'progress'  => ajv_progress(),
+        'age'       => altr_age(),
+        'body-part' => altr_body_part(),
+        'goal'      => altr_goal(),
+        'skin-type' => altr_skin_type(),
+        'timeline'  => altr_timeline(),
+        'style'     => altr_style(),
+        'theme'     => altr_theme(),
     ];
 }
\ No newline at end of file

--
Gitblit v1.10.0