From 1f04b83be337cc91a3fabcf4e574e2306f3d2eaa Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 30 Mar 2024 12:14:42 -0400 Subject: refactor --- web/core/aesthetic.php | 55 -------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 web/core/aesthetic.php (limited to 'web/core/aesthetic.php') diff --git a/web/core/aesthetic.php b/web/core/aesthetic.php deleted file mode 100644 index 1180ad1..0000000 --- a/web/core/aesthetic.php +++ /dev/null @@ -1,55 +0,0 @@ -config = array( - '_common' => array( - 'js' => [ - 'js/jquery-3.7.1.min.js', - 'js/lib.js', - 'js/modal.js', - ], - 'css' => [ - 'css/common.css' - ], - ), - 'error' => array( - 'css' => [ - 'css/error.css' - ], - ), - 'home' => array( - 'js' => [ - 'js/post.js', - ], - 'css' => [ - 'css/home.css', - 'css/post.css' - ], - ), - ); - } - - function get_files($route) { - $js_files = $this->config['_common']['js']; - $css_files = $this->config['_common']['css']; - - if (array_key_exists($route, $this->config)) { - $config = $this->config[$route]; - if (array_key_exists('js', $config)) { - $js_files = array_merge($js_files, $config['js']); - } - if (array_key_exists('css', $config)) { - $css_files = array_merge($css_files, $config['css']); - } - } - - return array( - 'js_files' => $js_files, - 'css_files' => $css_files, - ); - } - -} -- cgit v1.2.3-freya