Asset Management
searchmax - July 10, 2008 - 13:59
Hey, I am looking for a module which allows registered users to create photo albums and video albums. Explored asset management module, but it doesnt satisfy my requirement. Do you know any module which lets users to create photo albums and let them upload their photos to the albums and can be shared with their friends?

Have you looked at Acidfree?
Have you looked at Acidfree? There is also Gallery (for the Gallery2 script).
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer, researcher and solo drupal freelancer.
Je peux communiquer en français. / Я могу общаться на русском языке.
Acidfree not officially released for 5.x
Hi David,
I haven't tried acidfree as i am working on drupal 5.x and acidfree for 5.x is not officially released. So any other modules you can suggest me? Thankyou for the response.
Even though it is not
Even though it is not officially released, it is still very usable. Nonetheless, there are other ways. For example, you could create a custom content type with an imagefield, then, using views, have an individual gallery for each user. Any uploaded photo will go right to their own gallery. Here is some view code that you can import:
$view = new stdClass();$view->name = 'per_user_image_gallery';
$view->description = 'Individual user image galleries';
$view->access = array (
0 => '5',
1 => '2',
);
$view->view_args_php = '';
$view->page = TRUE;
$view->page_title = 'User galleries';
$view->page_header = '<a href="../../node/add/image">Add an image</a>';
$view->page_header_format = '3';
$view->page_footer = '';
$view->page_footer_format = '1';
$view->page_empty = '';
$view->page_empty_format = '1';
$view->page_type = 'list';
$view->url = 'member/galleries';
$view->use_pager = TRUE;
$view->nodes_per_page = '6';
$view->sort = array (
);
$view->argument = array (
array (
'type' => 'uid',
'argdefault' => '3',
'title' => '%1\'s Photo Album',
'options' => '',
'wildcard' => '',
'wildcard_substitution' => '',
),
);
$view->field = array (
array (
'tablename' => 'node',
'field' => 'title',
'label' => '',
'handler' => 'views_handler_field_nodelink',
'options' => 'link',
),
);
$view->filter = array (
array (
'tablename' => 'node',
'field' => 'status',
'operator' => '=',
'options' => '',
'value' => '1',
),
array (
'tablename' => 'node',
'field' => 'type',
'operator' => 'OR',
'options' => '',
'value' => array (
0 => 'image_gallery_image',
),
),
);
$view->exposed_filter = array (
);
$view->requires = array(node);
$views[$view->name] = $view;
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer, researcher and solo drupal freelancer.
Je peux communiquer en français. / Я могу общаться на русском языке.
Thankyou very much David, I
Thankyou very much David, I have integrated the acid free module and it is really fantastic. I am building a social networking site and i have integrated buddylist module for that. I am looking for a feature where a user can share his photo album among only his friends in the network. I couldnt find any access modules for acid free. Please give me your valuable suggestion on this.