Hello everyone. I got to editing my timeline functions, and the biggest issue for the proper functionality I want is ability for user to upload multiple photos, sounds at the same time, and text description to it.
I`ve been searching around in different files in wall module, in BxWallModule. php I found line:
* Get photo uploading form.
*
* @return string with form.
*/
function actionGetPhotoUploaders($iOwnerId)
{
$this->_iOwnerId = $iOwnerId;
return BxDolService::call('photos', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_photo_album', getNickName(getLoggedId())), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader');
}
I changed 'single' to 'multi' or 'multiple', functionalitty does not improve, though it is not getting proper upload form, single or multiple.
I would be greatly thankful for any piece of info about this functions, any method would be great for me to use: from multi upload function, to 'Attach one more file function', which would work for any kind of file.
I believe that adding flash uploader function to timeline would also solve the issue to 2MB limit for sound upload to timeline, which is not comfortable I believe.
Thank you for your attention :)