Added mode to Portfolio widget
This commit is contained in:
parent
9a8071e014
commit
8467ecb1d7
@ -20,6 +20,15 @@ class Portfolio {
|
||||
$album = $args['album'];
|
||||
if($args['title'])
|
||||
$title = $args['title'];
|
||||
if(array_key_exists('mode', $args) && isset($args['mode']))
|
||||
$mode = $args['mode'];
|
||||
else
|
||||
$mode = '';
|
||||
if(array_key_exists('count', $args) && isset($args['count']))
|
||||
$count = $args['count'];
|
||||
else
|
||||
$count = '';
|
||||
|
||||
|
||||
/**
|
||||
* This may return incorrect permissions if you have multiple directories of the same name.
|
||||
@ -92,6 +101,8 @@ class Portfolio {
|
||||
$tpl = get_markup_template('photo_album_portfolio.tpl');
|
||||
$o .= replace_macros($tpl, array(
|
||||
'$photos' => $photos,
|
||||
'$mode' => $mode,
|
||||
'$count' => $count,
|
||||
'$album' => (($title) ? $title : $album),
|
||||
'$album_id' => rand(),
|
||||
'$album_edit' => array(t('Edit Album'), $album_edit),
|
||||
@ -106,3 +117,4 @@ class Portfolio {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user