diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-31 07:13:34 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-31 07:13:34 +0000 |
commit | c1140b5c0aac2c2c1822a65ddd55151e093e2af4 (patch) | |
tree | 1d33c39ed3e7b92c74163f78b4fb1d9743d1ee5b /core/models | |
parent | 44c987e89e7fd3babebdc4835c1225b6d7869df1 (diff) |
Add Item_Model::url() and use it where appropriate. Cleans up some
grotty looking stuff in themes.
Diffstat (limited to 'core/models')
-rw-r--r-- | core/models/item.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/models/item.php b/core/models/item.php index a419c2f1..ffdaa7e9 100644 --- a/core/models/item.php +++ b/core/models/item.php @@ -103,6 +103,18 @@ class Item_Model extends ORM_MPTT { } /** + * album: url::site("albums/2") + * photo: url::site("photos/3") + */ + public function url() { + if ($this->is_album()) { + return url::site("albums/$this->id"); + } else { + return url::site("photos/$this->id"); + } + } + + /** * album: /var/albums/album1/album2 * photo: /var/albums/album1/album2/photo.jpg */ |