diff options
Diffstat (limited to 'core/helpers/core_block.php')
-rw-r--r-- | core/helpers/core_block.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/helpers/core_block.php b/core/helpers/core_block.php index 35bba06f..48e158be 100644 --- a/core/helpers/core_block.php +++ b/core/helpers/core_block.php @@ -33,6 +33,13 @@ class core_block_Core { return $buf; } + static function album_top($theme, $child) { + if (access::can("edit", $album)) { + $edit_link = url::site("quick/pane/$album->id"); + return "<div class=\"gQuick\" href=\"$edit_link\"></div>"; + } + } + static function thumb_top($theme, $child) { if ($child->type == "photo" && access::can("edit", $child)) { $edit_link = url::site("quick/pane/$child->id"); |