Can't find the answer? Contact our Support Team OR download our User Manual.
How can I log-in to peerScholar?
$detect = mobile_switch_mobile_detect();
$video = null;
$video_plural = false;
if( isset( $content["field_related_videos"] )) {
$related_video = $content["field_related_videos"]["#object"]->field_related_videos["und"];
foreach( $related_video as $target ) {
$target_id = $target["target_id"];
$title = $target["entity"]->title;
if( !empty( $video )) {
$video .= " ";
$video_plural = true;
}
if( $detect['ismobiledevice'] ) {
$video .= ''.$title.'';
} else {
$video .= ''.$title.'';
}
}
}
if( $video && $video_plural ) print '
peerScholar is used by many schools. Before you can access the system, you'll need your username and password. These should be provided to you by your teacher or administrative support officer.
Related Videos: '.render( $video ).'
'; elseif( $video && !$video_plural ) print 'Related Video: '.render( $video ).'
'; $howto = null; $howto_plural = false; if( isset( $content["field_related_how_to"] )) { $related_how_to = $content["field_related_how_to"]["#object"]->field_related_how_to["und"]; foreach( $related_how_to as $target ) { $target_id = $target["target_id"]; $title = $target["entity"]->title; if( !empty( $howto )) { $howto .= " "; $howto_plural = true; } if( $detect['ismobiledevice'] ) { $howto .= ''.$title.''; } else { $howto .= ''.$title.''; } } } if( $howto && $howto_plural ) print 'Related Tip Sheets: '.render( $howto ).'
'; elseif( $howto && !$howto_plural ) print 'Related Tip Sheet: '.render( $howto ).'
'; ?>