diff options
author | Kriss Andsten <kriss@sverok.se> | 2010-12-21 09:03:46 +0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-12-22 08:22:25 +0800 |
commit | 48640005a4edac955d9087f62fed1ab5f756b686 (patch) | |
tree | c50bf8a9cad3a724ebc4e06af9c15e3cfd2d1b5b /modules/gallery/helpers | |
parent | 612ddd7050889974fc1f7e449e715b4c1129c0bb (diff) |
Packaging + tests of Bharat's find_by_path routine.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/item.php | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/modules/gallery/helpers/item.php b/modules/gallery/helpers/item.php index 664da812..dbad59b9 100644 --- a/modules/gallery/helpers/item.php +++ b/modules/gallery/helpers/item.php @@ -208,7 +208,30 @@ class item_Core { return $model; } - + + static function find_by_path($path) { + $path = trim($path, '/'); + + // The root path name is NULL, not '', hence this workaround. + if ($path == '') { + return ORM::factory("item", 1); + } + + $paths = explode("/", $path); + $count = count($paths); + foreach (ORM::factory("item") + ->where('name', '=', $paths[$count - 1]) + ->where('level', '=', $count + 1) + ->find_all() as $item) { + if (urldecode($item->relative_path()) == $path) { + return $item; + } + } + + return false; + } + + /** * Return the root Item_Model * @return Item_Model |