コード例 #1
0
function PageCompShareVideos($sCaption)
{
    global $member;
    return '<div id="show_shareVideos">' . PageCompShareVideosContent($sCaption, $member['ID']) . '</div>';
}
コード例 #2
0
 function showBlockShareVideos($sCaption)
 {
     echo '<div id="show_shareVideos">';
     echo PageCompShareVideosContent($sCaption, $this->_iProfileID);
     echo '</div>';
 }
コード例 #3
0
    exit;
}
//Ajax loaders
if ($_GET['show_only']) {
    switch ($_GET['show_only']) {
        case 'shareMusic':
            $sCaption = db_value("SELECT `Caption` FROM `ProfileCompose` WHERE `Func` = 'ShareMusic'");
            echo PageCompShareMusicContent($sCaption, $profileID);
            break;
        case 'sharePhotos':
            $sCaption = db_value("SELECT `Caption` FROM `ProfileCompose` WHERE `Func` = 'SharePhotos'");
            echo PageCompSharePhotosContent($sCaption, $profileID);
            break;
        case 'shareVideos':
            $sCaption = db_value("SELECT `Caption` FROM `ProfileCompose` WHERE `Func` = 'ShareVideos'");
            echo PageCompShareVideosContent($sCaption, $profileID);
            break;
    }
    exit;
}
$_page['header'] = process_line_output($p_arr['NickName']) . ": " . htmlspecialchars_adv($p_arr['Headline']);
//$_page['header_text'] = process_line_output( $p_arr['Headline'] );
//post comment
if ($_POST['commentsubmit']) {
    $ret .= addComment($profileID);
}
//delete comment
if ($_GET['action'] == 'commentdelete') {
    $ret .= deleteComment((int) $_GET['commentID']);
}
// track profile views
コード例 #4
0
function PageCompShareVideos($sCaption)
{
    return '<div id="show_shareVideos">' . PageCompShareVideosContent($sCaption) . '</div>';
}