Changeset 13775 for trunk/modules/boonex/wall/classes/BxWallModule.php
- Timestamp:
- 03/10/10 11:19:50 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/wall/classes/BxWallModule.php
r13611 r13775 203 203 function actionGetPhotoUploaders($iOwnerId) { 204 204 $this->_iOwnerId = $iOwnerId; 205 return BxDolService::call('photos', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_photo_album', getNickName( $this->_iOwnerId)), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader');206 } 205 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'); 206 } 207 207 /** 208 208 * Get music uploading form. … … 212 212 function actionGetMusicUploaders($iOwnerId) { 213 213 $this->_iOwnerId = $iOwnerId; 214 return BxDolService::call('sounds', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_sound_album', getNickName( $this->_iOwnerId)), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader');214 return BxDolService::call('sounds', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_sound_album', getNickName(getLoggedId())), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader'); 215 215 } 216 216 /** … … 221 221 function actionGetVideoUploaders($iOwnerId) { 222 222 $this->_iOwnerId = $iOwnerId; 223 return BxDolService::call('videos', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_video_album', getNickName( $this->_iOwnerId)), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader');223 return BxDolService::call('videos', 'get_uploader_form', array(array('mode' => 'single', 'category' => 'wall', 'album'=>_t('_wall_video_album', getNickName(getLoggedId())), 'from_wall' => 1, 'owner_id' => $this->_iOwnerId)), 'Uploader'); 224 224 } 225 225 /**
Note: See TracChangeset
for help on using the changeset viewer.