本文整理汇总了PHP中UserUtils::student_photo_exist方法的典型用法代码示例。如果您正苦于以下问题:PHP UserUtils::student_photo_exist方法的具体用法?PHP UserUtils::student_photo_exist怎么用?PHP UserUtils::student_photo_exist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserUtils
的用法示例。
在下文中一共展示了UserUtils::student_photo_exist方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$button_width = 125;
}
?>
<table cellpadding="0" cellspacing="0" border="0" style="margin-left:auto; margin-right:auto; margin-top:40px; font-size:100%; border-top:1px solid #95AEC8;border-left:1px solid #95AEC8; border-right:1px solid #95AEC8; background-color:white; width:<?php
echo $table_width;
?>
%">
<tr>
<?php
$icon_types = array('formative', 'progress', 'summative', 'survey');
echo '<td colspan="2"><table cellspacing="4" cellpadding="0" border="0" style="width:100%"><tr><td style="width:52px"><img src="../artwork/' . $icon_types[$test_type] . '.png" style="width:48px; height:48px; padding-left:4px" alt="Icon" />';
echo "</td><td><span class=\"paper_title\">{$paper_title}</span></td>\n</tr></table></td></tr>";
echo "<tr>\n</table>\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"font-size:95%; margin-left:auto; margin-right:auto;border:1px solid #95AEC8;background-color:#F1F5FB\" width=\"{$table_width}%\">\n";
echo '<tr><td colspan="4"> </td>';
if ($test_type == 2) {
$student_photo = UserUtils::student_photo_exist($userObject->get_username());
if ($student_photo !== false) {
$photo_size = getimagesize($cfg_web_root . 'users/photos/' . $student_photo);
echo '<td rowspan="';
if ($sound_demo == '1') {
echo '8';
} else {
echo '7';
}
echo '" style="vertical-align:top; padding:8px"><div class="photoid">' . $string['photoid'] . '</div><img src="../users/photos/' . $student_photo . '" ' . $photo_size[3] . ' alt="Photo" style="border: 10px solid white" /></td>';
}
}
echo '</tr>';
if ($rubric != '') {
echo '<tr><td class="f" style="vertical-align:top"><nobr>' . $string['rubric'] . '</nobr></td><td colspan="3" style="text-align:justify; line-height:140%; padding-right:20px; padding-bottom:15px">' . $rubric . '</td></tr>';
}
示例2: getimagesize
; width:100%; line-height:175%; padding-bottom:10px">
<form name="myform" action="<?php
echo $_SERVER['PHP_SELF'];
?>
?userID=<?php
echo $userID;
?>
" method="post">
<?php
if ($user_details['gender'] == 'Male') {
$generic_icon = '../artwork/user_male_64.png';
} else {
$generic_icon = '../artwork/user_female_64.png';
}
if (stripos($user_details['roles'], 'Student') !== false) {
$student_photo = UserUtils::student_photo_exist($user_details['username']);
if ($student_photo !== false) {
$photo_size = getimagesize('photos/' . $student_photo);
if (isset($demo) and $demo == true) {
echo "<tr><td rowspan=\"6\" style=\"vertical-align:top; width:" . $photo_size[2] . "px\"><img src=\"./pixel_photo.php?username=" . $user_details['username'] . "\" " . $photo_size[3] . " alt=\"Photo\" /></td>";
} else {
echo "<tr><td rowspan=\"6\" style=\"vertical-align:top; width:" . $photo_size[2] . "px\"><img src=\"photos/" . $student_photo . "\" " . $photo_size[3] . " alt=\"Photo\" /></td>";
}
} else {
echo "<tr><td rowspan=\"6\" width=\"100\" style=\"vertical-align:top; text-align:center; padding-top:6px\"><img src=\"{$generic_icon}\" width=\"64\" height=\"64\" alt=\"User Folder\" style=\"background-color:white; padding:5px; border:2px solid #9A6508\" /></td>\n";
}
} else {
echo "<tr><td rowspan=\"6\" width=\"100\" style=\"vertical-align:top; text-align:center; padding-top:6px\"><img src=\"{$generic_icon}\" width=\"64\" height=\"64\" alt=\"User Folder\" style=\"background-color:white; padding:5px; border:2px solid #9A6508\" /></td>\n";
}
echo "<td colspan=\"4\" style=\"vertical-align:top\"> <a href=\"../index.php\">" . $string['home'] . "</a><img src=\"../artwork/breadcrumb_arrow.png\" class=\"breadcrumb_arrow\" alt=\"-\" /><a href=\"search.php\">" . $string['usersearch'] . "</a><img src=\"../artwork/toprightmenu.gif\" id=\"toprightmenu_icon\" />";
if ($userObject->has_role('SysAdmin')) {