Esempio n. 1
0
	    <?php 
if ($isAliensProfile) {
    $user = $profile->id;
    $name = $profile->fullname . "'s ";
    $anyoneChallMess = "User doesn't have any challenges to respond to";
    $nonLinkable = false;
} else {
    $user = Yii::$app->user->id;
    $name = "My ";
    $anyoneChallMess = "You don't have any challenges to respond";
    $nonLinkable = true;
}
$anyoneTitle = $name . " challenges";
$razzSearch = new RazzSearch();
$anyoneHtml = $this->render('../../razz/item', ['items' => $razzSearch->getRazzAnyone($user), 'razzModel' => $razzModel, 'nonLinkable' => $nonLinkable]);
if (trim($anyoneHtml) != '') {
    ?>
    	    <section class="respond_items_list">
    		<h2><?php 
    echo $anyoneTitle;
    ?>
</h2>

    		<div class="video-list video-list-small all-list respond_list">
			<?php 
    echo $anyoneHtml;
    ?>
    		</div>
    	    </section>
		<?php