Code

Readded smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_internal_get_include_path.php
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_get_include_path.php b/gosa-core/include/smarty/sysplugins/smarty_internal_get_include_path.php
new file mode 100644 (file)
index 0000000..7a9739e
--- /dev/null
@@ -0,0 +1,43 @@
+<?php\r
+/**\r
+ * Smarty read include path plugin\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsInternal\r
+ * @author Monte Ohrt\r
+ */\r
+\r
+/**\r
+ * Smarty Internal Read Include Path Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsInternal\r
+ */\r
+class Smarty_Internal_Get_Include_Path {\r
+\r
+    /**\r
+     * Return full file path from PHP include_path\r
+     *\r
+     * @param string $filepath filepath\r
+     * @return string|boolean full filepath or false\r
+     */\r
+    public static function getIncludePath($filepath)\r
+    {\r
+        static $_include_path = null;\r
+\r
+        if ($_path_array === null) {\r
+            $_include_path = explode(PATH_SEPARATOR, get_include_path());\r
+        }\r
+\r
+        foreach ($_include_path as $_path) {\r
+            if (file_exists($_path . DS . $filepath)) {\r
+                return $_path . DS . $filepath;\r
+            }\r
+        }\r
+        \r
+        return false;\r
+    }\r
+\r
+}\r
+\r
+?>
\ No newline at end of file