diff options
author | Fx Nion <http://fxnion.free.fr> | 2012-05-13 19:56:15 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-13 19:56:15 +0200 |
commit | b070daa95241bc0c7d46011a3de7674fbf0c5e68 (patch) | |
tree | 638f771d1708194ab4a1cfb9614b73cd9fbaca5f /views/default/widgets/latest_album_index | |
download | elgg-b070daa95241bc0c7d46011a3de7674fbf0c5e68.tar.gz elgg-b070daa95241bc0c7d46011a3de7674fbf0c5e68.tar.bz2 |
v2.4
Diffstat (limited to 'views/default/widgets/latest_album_index')
-rw-r--r-- | views/default/widgets/latest_album_index/content.php | 64 | ||||
-rw-r--r-- | views/default/widgets/latest_album_index/edit.php | 64 |
2 files changed, 128 insertions, 0 deletions
diff --git a/views/default/widgets/latest_album_index/content.php b/views/default/widgets/latest_album_index/content.php new file mode 100644 index 000000000..f57baee9d --- /dev/null +++ b/views/default/widgets/latest_album_index/content.php @@ -0,0 +1,64 @@ +<div class="contentWrapper"> +<?php + + $object_type ='album'; + + $num_items = $vars['entity']->num_items; + if (!isset($num_items)) + $num_items = 10; + + $widget_group = $vars["entity"]->widget_group; + if (!isset($widget_group)) + $widget_group = 0; + + $site_categories = $vars['config']->site->categories; + $widget_categorie = $vars['entity']->widget_categorie; + $widget_context_mode = $vars['entity']->widget_context_mode; + if (!isset($widget_context_mode)) + $widget_context_mode = 'search'; + elgg_set_context($widget_context_mode); + + $owner_albums = elgg_get_entities("object", $object_type, $widget_group, "", $num_items, 0, false); + + echo '<div id="tidypics_album_widget_container">'; + + if ($owner_albums) { + foreach($owner_albums as $album) { + + if($album->cover) + $album_cover = '<img src="'.$vars['url'].'mod/tidypics/thumbnail.php?file_guid='.$album->cover.'&size=small" class="tidypics_album_cover" alt="' . $album->title . '"/>'; + else + $album_cover = '<img src="'.$vars['url'].'mod/tidypics/graphics/empty_album.png" class="tidypics_album_cover" alt="' . $album->title . '">'; +?> + <div class="tidypics_album_widget_single_item"> + <div class="tidypics_album_widget_title"><a href="<?php echo $album->getURL();?>"><?php echo $album->title;?></a></div> + <div class="tidypics_album_widget_timestamp"> <?php echo elgg_echo("album:created:on") . ' ' . friendly_time($album->time_created);?></div> +<?php + //get the number of comments + $numcomments = elgg_count_comments($album); + if ($numcomments) + echo "<a href=\"{$album->getURL()}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")</a><br>"; +?> + <a href="<?php echo $album->getURL();?>"><?php echo $album_cover;?></a> + </div> +<?php + } //end of foreach loop + + // bottom link to all group/user albums + /*if (is_null($owner->username) || empty($owner->username)) { + echo '<p class="profile_info_edit_buttons"><a href="' . $vars['url'] . 'pg/photos/world">' . elgg_echo('album:all') . '</a></p>'; + } else { + echo '<p class="tidypics_download"><a href="' . $vars['url'] . 'pg/photos/owned/' . $owner->username . '">' . elgg_echo('album:more') . '</a></p>'; + }*/ + + } + + /*if (can_write_to_container(0, $owner->guid)) { + echo '<p class="tidypics_download"><a href=' . $CONFIG->wwwroot .'pg/photos/new/' . $owner->username . '>' . elgg_echo("album:create") . '</a></p>'; + }*/ + + + //close album_widget_container div + echo "</div>"; +?> +</div>
\ No newline at end of file diff --git a/views/default/widgets/latest_album_index/edit.php b/views/default/widgets/latest_album_index/edit.php new file mode 100644 index 000000000..86eaa19cc --- /dev/null +++ b/views/default/widgets/latest_album_index/edit.php @@ -0,0 +1,64 @@ + <?php + $num_items = $vars['entity']->num_items; + if (!isset($num_items)) $num_items = 10; + + $widget_group = $vars["entity"]->widget_group; + if (!isset($widget_group)) $widget_group = 0; + + + $widget_title = $vars['entity']->widget_title; + $widget_group = $vars["entity"]->widget_group; + + $guest_only = $vars['entity']->guest_only; + if (!isset($guest_only)) $guest_only = "no"; + + $box_style = $vars['entity']->box_style; + if (!isset($box_style)) $box_style = "collapsable"; + ?> + <p> + <?php echo elgg_echo('custom_index_widgets:widget_title'); ?> + : + <?php + echo elgg_view('input/text', array('name'=>'params[widget_title]', 'value'=>$widget_title)); + ?> + </p> + <p> + <?php echo elgg_echo('group'); ?> + : + <?php + $groups = elgg_get_entities(array("type"=>'group','limit'=>100)); + $group_list = array(); + $group_list[0] = elgg_echo('custom_index_widgets:widget_all_groups'); + if ($groups) { + foreach ($groups as $group) { + $group_list[$group->getGUID()] = $group->name; + } + } + echo elgg_view('input/dropdown', array('name'=>'params[widget_group]', 'options_values'=>$group_list, 'value'=>$widget_group)); + ?> + </p> + <p> + <?php echo elgg_echo('custom_index_widgets:num_items'); ?> + : + <?php + echo elgg_view('input/dropdown', array('name'=>'params[num_items]', 'options_values'=>array('1'=>'1', '3'=>'3', '5'=>'5', '8'=>'8', '10'=>'10', '12'=>'12', '15'=>'15', '20'=>'20', '30'=>'30', '40'=>'40', '50'=>'50', '100'=>'100', ), 'value'=>$num_items)); + ?> + </p> + <p> + <?php echo elgg_echo('custom_index_widgets:box_style'); ?> + : + <?php + echo elgg_view('input/dropdown', array('name'=>'params[box_style]', + 'options_values'=>array('plain'=>'Plain', 'plain collapsable'=>'Plain and collapsable', 'collapsable'=>'Collapsable', 'standard' => 'No Collapsable'), + 'value'=>$box_style)); + ?> + </p> + <p> + <?php echo elgg_echo('custom_index_widgets:guest_only'); ?> + : + <?php + echo elgg_view('input/dropdown', array('name'=>'params[guest_only]', + 'options_values'=>array('yes'=>'yes', 'no'=>'no'), + 'value'=>$guest_only)); + ?> + </p>
\ No newline at end of file |