diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-04 05:02:37 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-04 05:02:37 +0000 |
commit | 630b0f26fc5dc970d8634e58489c41c5a40481f1 (patch) | |
tree | 93dd3699d1681afeff0a41e2c5aded74353cccd8 /core/models | |
parent | 8709c1965f9b13967e74efddb7ff6c99e734a135 (diff) |
Restructure the theme code to be more like WordPress / Habari. Now,
the controller initiates a request to a top level page (eg:
album.html.php) which is then free to include whatever other page
chunks it wants with calls like <?= $theme->display('header.html') ?>
Variables like $item and $children are in the global space for all
views.
theme.php helper is now Theme.php library which lets us store the name
of the theme inside the variable itself. This means that the theme
does not have to know its own name because you can use $theme->url()
for all urls to stuff inside the theme itself, which makes it possible
to cline a theme without changing a single line.
Still using the mock album UI.
Diffstat (limited to 'core/models')
-rw-r--r-- | core/models/item.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/models/item.php b/core/models/item.php index b8957911..8b08b699 100644 --- a/core/models/item.php +++ b/core/models/item.php @@ -20,4 +20,22 @@ class Item_Model extends MPTT { protected $left_column = "left"; protected $right_column = "right"; + + public function is_album() { + return $this->type == 'album'; + } + + public function is_photo() { + return $this->type == 'photo'; + } + + // MPTT::get_children returns null if there are no children; change that to an empty array for + // consistency. + public function get_children() { + $children = parent::get_children(); + if (empty($children)) { + $children = array(); + } + return $children; + } } |