function getBlockCode_ShareVideos()
 {
     $aMem = array('ID' => $this->_iProfileID);
     $oNew = new BxDolSharedMedia('video', $this->aConfSite, $this->aConfDir, $aMem);
     $aRes = $oNew->getBlockCode_SharedMedia($this->oProfileV->_iProfileID);
     return $aRes;
 }
 function getBlockCode_ShareVideos()
 {
     global $site;
     global $dir;
     $aMem = array('ID' => $this->iMemberID);
     $oNew = new BxDolSharedMedia('video', $site, $dir, $aMem);
     $aRes = $oNew->getBlockCode_SharedMedia();
     return $aRes;
 }
 function getBlockCode_ShareMusic()
 {
     $aMem = array('ID' => $this->iMember, 'Password' => $this->aMemberInfo['Password']);
     $oNew = new BxDolSharedMedia('music', $this->aConfSite, $this->aConfDir, $aMem);
     $aRes = $oNew->getBlockCode_SharedMedia($oNew->iViewer);
     return $aRes;
 }