本文整理汇总了PHP中ilInfoScreenGUI::getHTML方法的典型用法代码示例。如果您正苦于以下问题:PHP ilInfoScreenGUI::getHTML方法的具体用法?PHP ilInfoScreenGUI::getHTML怎么用?PHP ilInfoScreenGUI::getHTML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilInfoScreenGUI
的用法示例。
在下文中一共展示了ilInfoScreenGUI::getHTML方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: show
/**
* Show subscription info
*/
protected function show()
{
$token = $this->createToken();
ilUtil::sendInfo($GLOBALS['lng']->txt('cal_subscription_info'));
include_once './Services/InfoScreen/classes/class.ilInfoScreenGUI.php';
$info = new ilInfoScreenGUI($this);
$info->setFormAction($GLOBALS['ilCtrl']->getFormAction($this));
$hash = $this->createToken();
$url = ILIAS_HTTP_PATH . '/calendar.php?client_id=' . CLIENT_ID . '&token=' . $hash;
$info->addSection($this->getCalendar()->getTitle());
$info->addProperty('Abonnieren', $url, $url);
$GLOBALS['tpl']->setContent($info->getHTML());
}
示例2: details
/**
* show calendar details
*
* @access protected
* @return
*/
protected function details()
{
global $tpl;
if (!$_GET['category_id']) {
ilUtil::sendFailure($this->lng->txt('select_one'), true);
$this->ctrl->returnToParent($this);
}
$this->readPermissions();
$this->checkVisible();
$category = new ilCalendarCategory((int) $_GET['category_id']);
if (!in_array($category->getType(), array(ilCalendarCategory::TYPE_CH, ilCalendarCategory::TYPE_BOOK))) {
include_once "./Services/UIComponent/Toolbar/classes/class.ilToolbarGUI.php";
$toolbar = new ilToolbarGui();
$toolbar->addButton($this->lng->txt("cal_add_appointment"), $this->ctrl->getLinkTargetByClass("ilcalendarappointmentgui", "add"));
if (!in_array($category->getType(), array(ilCalendarCategory::TYPE_CH, ilCalendarCategory::TYPE_BOOK))) {
$toolbar->addButton($this->lng->txt("cal_import_appointments"), $this->ctrl->getLinkTarget($this, "importAppointments"));
}
$toolbar = $toolbar->getHTML();
}
// Non editable category
include_once "./Services/InfoScreen/classes/class.ilInfoScreenGUI.php";
$info = new ilInfoScreenGUI($this);
$info->setFormAction($this->ctrl->getFormAction($this));
$info->addSection($this->lng->txt('cal_cal_details'));
// Calendar Name
$info->addProperty($this->lng->txt('cal_calendar_name'), $category->getTitle());
switch ($category->getType()) {
case ilCalendarCategory::TYPE_USR:
$info->addProperty($this->lng->txt('cal_cal_type'), $this->lng->txt('cal_type_personal'));
break;
case ilCalendarCategory::TYPE_GLOBAL:
$info->addProperty($this->lng->txt('cal_cal_type'), $this->lng->txt('cal_type_system'));
break;
case ilCalendarCategory::TYPE_OBJ:
$info->addProperty($this->lng->txt('cal_cal_type'), $this->lng->txt('cal_type_' . $category->getObjType()));
$info->addSection($this->lng->txt('additional_info'));
$info->addProperty($this->lng->txt('perma_link'), $this->addReferenceLinks($category->getObjId()));
break;
case ilCalendarCategory::TYPE_CH:
case ilCalendarCategory::TYPE_BOOK:
// nothing to do
break;
}
// Ical link
$this->ctrl->setParameterByClass('ilcalendarsubscriptiongui', 'cal_id', (int) $_GET['category_id']);
$info->addProperty($this->lng->txt('cal_ical_infoscreen'), '<img src="' . ilUtil::getImagePath('ical.png', 'Services/Calendar') . '" />', $this->ctrl->getLinkTargetByClass(array('ilcalendarpresentationgui', 'ilcalendarsubscriptiongui')));
$tpl->setContent($toolbar . $info->getHTML() . $this->showAssignedAppointments());
}
示例3: accessStatusInfo
/**
* Access- and Statusinformation Info
* @return string HTML
*/
function accessStatusInfo()
{
include_once "./Services/InfoScreen/classes/class.ilInfoScreenGUI.php";
$info = new ilInfoScreenGUI(new stdClass());
$info->setFormAction($this->ilCtrl->getFormAction($this));
$info->addSection($this->lng->txt("info_access_and_status_info"));
foreach ($this->getAccessStatusInfoData() as $data) {
$info->addProperty($data[0], $data[1]);
}
return $info->getHTML();
}
示例4: showInfoScreen
/**
* show info screen
*
* @access protected
* @return
*/
protected function showInfoScreen()
{
global $tpl, $ilUser;
include_once "./Services/InfoScreen/classes/class.ilInfoScreenGUI.php";
$info = new ilInfoScreenGUI($this);
$info->setFormAction($this->ctrl->getFormAction($this));
if ($this->app->isMilestone()) {
$info->addSection($this->lng->txt('cal_ms_details'));
} else {
$info->addSection($this->lng->txt('cal_details'));
}
// Appointment
$info->addProperty($this->lng->txt('appointment'), ilDatePresentation::formatPeriod($this->app->getStart(), $this->app->getEnd()));
$info->addProperty($this->lng->txt('title'), $this->app->getPresentationTitle());
// Description
if (strlen($desc = $this->app->getDescription())) {
$info->addProperty($this->lng->txt('description'), $desc);
}
// Location
if (strlen($loc = $this->app->getLocation())) {
$info->addProperty($this->lng->txt('cal_where'), $loc);
}
// completion
if ($this->app->isMilestone() && $this->app->getCompletion() > 0) {
$info->addProperty($this->lng->txt('cal_task_completion'), $this->app->getCompletion() . " %");
}
include_once './Services/Calendar/classes/class.ilCalendarCategoryAssignments.php';
$cat_id = ilCalendarCategoryAssignments::_lookupCategory($this->app->getEntryId());
$cat_info = ilCalendarCategories::_getInstance()->getCategoryInfo($cat_id);
$type = ilObject::_lookupType($cat_info['obj_id']);
if ($this->app->isMilestone() && $cat_info['type'] == ilCalendarCategory::TYPE_OBJ && ($type == "grp" || $type == "crs")) {
// users responsible
$users = $this->app->readResponsibleUsers();
$delim = "";
foreach ($users as $r) {
$value .= $delim . $r["lastname"] . ", " . $r["firstname"] . " [" . $r["login"] . "]";
$delim = "<br />";
}
if (count($users) > 0) {
$info->addProperty($this->lng->txt('cal_responsible'), $value);
}
}
$category = new ilCalendarCategory($cat_id);
if ($category->getType() == ilCalendarCategory::TYPE_OBJ) {
$info->addSection($this->lng->txt('additional_info'));
$cat_info = ilCalendarCategories::_getInstance()->getCategoryInfo($cat_id);
$refs = ilObject::_getAllReferences($cat_info['obj_id']);
include_once './Services/Link/classes/class.ilLink.php';
$href = ilLink::_getStaticLink(current($refs), ilObject::_lookupType($cat_info['obj_id']), true);
$info->addProperty($this->lng->txt('perma_link'), '<a class="small" href="' . $href . '" target="_top">' . $href . '</a>');
}
$tpl->setContent($info->getHTML());
}
示例5: outputInfoScreen
/**
* info screen
*/
function outputInfoScreen($a_standard_locator = false)
{
global $ilAccess;
$this->initScreenHead();
$this->lng->loadLanguageModule("meta");
include_once "./Services/InfoScreen/classes/class.ilInfoScreenGUI.php";
$info = new ilInfoScreenGUI($this->lm_gui);
$info->enablePrivateNotes();
$info->enableLearningProgress();
$info->enableNews();
if ($ilAccess->checkAccess("write", "", $_GET["ref_id"])) {
$news_set = new ilSetting("news");
$enable_internal_rss = $news_set->get("enable_rss_for_internal");
$info->enableNewsEditing();
if ($enable_internal_rss) {
$info->setBlockProperty("news", "settings", true);
}
}
// add read / back button
/*
if ($ilAccess->checkAccess("read", "", $_GET["ref_id"]))
{
if ($_GET["obj_id"] > 0)
{
$this->ctrl->setParameter($this, "obj_id", $_GET["obj_id"]);
$info->addButton($this->lng->txt("back"),
$this->ctrl->getLinkTarget($this, "layout"));
}
else
{
$info->addButton($this->lng->txt("view"),
$this->ctrl->getLinkTarget($this, "layout"));
}
}*/
// show standard meta data section
$info->addMetaDataSections($this->lm->getId(), 0, $this->lm->getType());
if ($this->offlineMode()) {
$this->tpl->setContent($info->getHTML());
return $this->tpl->get();
} else {
// forward the command
$this->ctrl->forwardCommand($info);
//$this->tpl->setContent("aa");
$this->tpl->show();
}
}
示例6: getOverviewBody
//.........这里部分代码省略.........
$info->addProperty($lng->txt("exc_files_returned_text"), $files_str);
break;
}
$last_sub = ilExAssignment::getLastSubmission($a_data["id"], $ilUser->getId());
if ($last_sub) {
$last_sub = ilDatePresentation::formatDate(new ilDateTime($last_sub, IL_CAL_DATETIME));
} else {
$last_sub = "---";
}
if ($last_sub != "---") {
$info->addProperty($lng->txt("exc_last_submission"), $last_sub);
}
// peer feedback
if ($times_up && $a_data["peer"]) {
$nr_missing_fb = ilExAssignment::getNumberOfMissingFeedbacks($a_data["id"], $a_data["peer_min"]);
if (!$a_data["peer_dl"] || $a_data["peer_dl"] > time()) {
$dl_info = "";
if ($a_data["peer_dl"]) {
$dl_info = " (" . sprintf($lng->txt("exc_peer_review_deadline_info_button"), ilDatePresentation::formatDate(new ilDateTime($a_data["peer_dl"], IL_CAL_UNIX))) . ")";
}
$button = ilLinkButton::getInstance();
$button->setPrimary($nr_missing_fb);
$button->setCaption($lng->txt("exc_peer_review_give") . $dl_info, false);
$button->setUrl($ilCtrl->getLinkTargetByClass("ilobjexercisegui", "editPeerReview"));
$edit_pc = $button->render();
} else {
if ($a_data["peer_dl"]) {
$edit_pc = $lng->txt("exc_peer_review_deadline_reached");
}
}
if ((!$a_data["peer_dl"] || $a_data["peer_dl"] < time()) && !$nr_missing_fb) {
$button = ilLinkButton::getInstance();
$button->setCaption("exc_peer_review_show");
$button->setUrl($ilCtrl->getLinkTargetByClass("ilobjexercisegui", "showPersonalPeerReview"));
$view_pc = $button->render();
}
/*
else
{
$view_pc = $lng->txt("exc_peer_review_show_not_rated_yet");
}
*/
$info->addProperty($lng->txt("exc_peer_review"), $edit_pc . " " . $view_pc);
}
// feedback from tutor
if ($a_data["type"] == ilExAssignment::TYPE_UPLOAD_TEAM) {
$feedback_id = "t" . ilExAssignment::getTeamIdByAssignment($a_data["id"], $ilUser->getId());
} else {
$feedback_id = $ilUser->getId();
}
// global feedback / sample solution
if ($a_data["fb_date"] == ilExAssignment::FEEDBACK_DATE_DEADLINE) {
$show_global_feedback = $times_up && $a_data["fb_file"];
} else {
$show_global_feedback = $last_sub != "---" && $a_data["fb_file"];
}
$storage = new ilFSStorageExercise($a_data["exc_id"], $a_data["id"]);
$cnt_files = $storage->countFeedbackFiles($feedback_id);
$lpcomment = ilExAssignment::lookupCommentForUser($a_data["id"], $ilUser->getId());
$mark = ilExAssignment::lookupMarkOfUser($a_data["id"], $ilUser->getId());
$status = ilExAssignment::lookupStatusOfUser($a_data["id"], $ilUser->getId());
if ($lpcomment != "" || $mark != "" || $status != "notgraded" || $cnt_files > 0 || $show_global_feedback) {
$info->addSection($lng->txt("exc_feedback_from_tutor"));
if ($lpcomment != "") {
$info->addProperty($lng->txt("exc_comment"), $lpcomment);
}
if ($mark != "") {
$info->addProperty($lng->txt("exc_mark"), $mark);
}
if ($status == "") {
// $info->addProperty($lng->txt("status"),
// $lng->txt("message_no_delivered_files"));
} else {
if ($status != "notgraded") {
$img = '<img src="' . ilUtil::getImagePath("scorm/" . $status . ".svg") . '" ' . ' alt="' . $lng->txt("exc_" . $status) . '" title="' . $lng->txt("exc_" . $status) . '" />';
$info->addProperty($lng->txt("status"), $img . " " . $lng->txt("exc_" . $status));
}
}
if ($cnt_files > 0) {
$info->addSection($lng->txt("exc_fb_files") . '<a name="fb' . $a_data["id"] . '"></a>');
if ($cnt_files > 0) {
$files = $storage->getFeedbackFiles($feedback_id);
foreach ($files as $file) {
$ilCtrl->setParameterByClass("ilobjexercisegui", "file", urlencode($file));
$info->addProperty($file, $lng->txt("download"), $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "downloadFeedbackFile"));
$ilCtrl->setParameterByClass("ilobjexercisegui", "file", "");
}
}
}
// #15002 - global feedback
if ($show_global_feedback) {
$info->addSection($lng->txt("exc_global_feedback_file"));
$info->addProperty($a_data["fb_file"], $lng->txt("download"), $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "downloadGlobalFeedbackFile"));
}
}
}
}
$tpl->setVariable("CONTENT", $info->getHTML());
return $tpl->get();
}
示例7: showContent
//.........这里部分代码省略.........
$info->removeFormAction();
$this->pluginObj->includeClass('class.ilAdobeConnectQuota.php');
$this->pluginObj->includeClass("class.ilObjAdobeConnectAccess.php");
$is_member = ilObjAdobeConnectAccess::_hasMemberRole($ilUser->getId(), $this->object->getRefId());
$is_admin = ilObjAdobeConnectAccess::_hasAdminRole($ilUser->getId(), $this->object->getRefId());
//SWITCHAAI: If the user has no SWITCHaai-Account, we show the room link without connecting to the adobe-connect server. This is used for guest logins.
$show_only_roomlink = false;
if ($settings->getAuthMode() == ilAdobeConnectServer::AUTH_MODE_SWITCHAAI and !ilAdobeConnectServer::useSwitchaaiAuthMode($ilUser->getAuthMode(true))) {
$show_only_roomlink = true;
$presentation_url = $settings->getPresentationUrl();
$button_txt = $this->pluginObj->txt('enter_vc');
$button_target = $presentation_url . $this->object->getURL();
$button_tpl = new ilTemplate($this->pluginObj->getDirectory() . "/templates/default/tpl.bigbutton.html", true, true);
$button_tpl->setVariable('BUTTON_TARGET', $button_target);
$button_tpl->setVariable('BUTTON_TEXT', $button_txt);
$big_button = $button_tpl->get();
$info->addSection('');
$info->addProperty('', $big_button . "<br />");
}
if (($this->access->checkAccess("write", "", $this->object->getRefId()) || $is_member || $is_admin) && !$show_only_roomlink) {
$presentation_url = $settings->getPresentationUrl();
$form = new ilPropertyFormGUI();
$form->setTitle($this->pluginObj->txt('access_meeting_title'));
$this->object->doRead();
if ($this->object->getStartDate() != NULL) {
$ilAdobeConnectUser = new ilAdobeConnectUserUtil($this->user->getId());
$ilAdobeConnectUser->ensureAccountExistance();
$xavc_login = $ilAdobeConnectUser->getXAVCLogin();
$quota = new ilAdobeConnectQuota();
// show button
if (($this->object->getPermanentRoom() == 1 || $this->doProvideAccessLink()) && $this->object->isParticipant($xavc_login)) {
if (!$quota->mayStartScheduledMeeting($this->object->getScoId())) {
$href = $this->txt("meeting_not_available_no_slots");
$button_disabled = true;
} else {
$href = '<a href="' . $this->ctrl->getLinkTarget($this, 'performSso') . '" target="_blank" >' . $presentation_url . $this->object->getURL() . '</a>';
$button_disabled = false;
}
} else {
$href = $this->txt("meeting_not_available");
$button_disabled = true;
}
if ($button_disabled == true) {
$button_txt = $href;
} else {
$button_txt = $this->pluginObj->txt('enter_vc');
}
$button_target = ILIAS_HTTP_PATH . "/" . $this->ctrl->getLinkTarget($this, 'performSso', '', false, false);
$button_tpl = new ilTemplate($this->pluginObj->getDirectory() . "/templates/default/tpl.bigbutton.html", true, true);
$button_tpl->setVariable('BUTTON_TARGET', $button_target);
$button_tpl->setVariable('BUTTON_TEXT', $button_txt);
$big_button = $button_tpl->get();
$info->addSection('');
if ($button_disabled == true) {
$info->addProperty('', $href);
} else {
$info->addProperty('', $big_button . "<br />");
}
// show instructions
if (strlen($this->object->getInstructions()) > 1) {
$info->addSection($this->lng->txt('exc_instruction'));
$info->addProperty('', nl2br($this->object->getInstructions()));
}
// show contact info
if (strlen($this->object->getContactInfo()) > 1) {
$info->addSection($this->pluginObj->txt('contact_information'));
$info->addProperty('', nl2br($this->object->getContactInfo()));
}
//show contents
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->object->getRefId(), AdobeConnectPermissions::PERM_READ_CONTENTS) && $this->object->getReadContents('content')) {
$info->addSection($this->pluginObj->txt('file_uploads'));
$info->setFormAction($this->ctrl->getFormAction($this, 'showContent'));
$has_access = false;
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_UPLOAD_CONTENT) || $has_write_permission) {
$has_access = true;
$tpl_sub_button = new ilTemplate("Services/InfoScreen/templates/default/tpl.submitbuttons.html", true, true);
$tpl_sub_button->setVariable('BTN_NAME', $this->txt("add_new_content"));
$tpl_sub_button->setVariable('BTN_COMMAND', 'showAddContent');
$info->addProperty('', $tpl_sub_button->get());
}
$info->addProperty('', $this->viewContents($has_access));
}
// show records
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->object->getRefId(), AdobeConnectPermissions::PERM_READ_RECORDS) && $this->object->getReadRecords()) {
$has_access = false;
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_EDIT_RECORDS) || $has_write_permission) {
$has_access = true;
}
$info->addSection($this->pluginObj->txt('records'));
$info->addProperty('', $this->viewRecords($has_access, 'record'));
}
} else {
ilUtil::sendFailure($this->txt('error_connect_ac_server'));
}
}
$info->hideFurtherSections();
$tpl->setContent($info->getHTML() . $this->getPerformTriggerHtml());
$tpl->setPermanentLink('xavc', $this->object->getRefId());
$tpl->addILIASFooter();
}
示例8: outputInfoScreen
/**
* info screen
*/
function outputInfoScreen($a_standard_locator = false)
{
global $ilBench, $ilLocator, $ilAccess;
$this->renderPageTitle();
// set style sheets
if (!$this->offlineMode()) {
$this->tpl->setStyleSheetLocation(ilUtil::getStyleSheetLocation());
} else {
$style_name = $this->ilias->account->prefs["style"] . ".css";
$this->tpl->setStyleSheetLocation("./" . $style_name);
}
$this->tpl->getStandardTemplate();
$this->tpl->setTitle($this->lm->getTitle());
$this->tpl->setTitleIcon(ilUtil::getImagePath("icon_lm_b.png"));
$this->tpl->setVariable("TABS", $this->lm_gui->setilLMMenu($this->offlineMode(), $this->getExportFormat(), "info", true));
// Full locator, if read permission is given
if ($ilAccess->checkAccess("read", "", $_GET["ref_id"])) {
$this->ilLocator();
} else {
$ilLocator->addRepositoryItems();
$this->tpl->setLocator();
}
$this->lng->loadLanguageModule("meta");
include_once "./Services/InfoScreen/classes/class.ilInfoScreenGUI.php";
$info = new ilInfoScreenGUI($this->lm_gui);
$info->enablePrivateNotes();
$info->enableLearningProgress();
$info->enableNews();
if ($ilAccess->checkAccess("write", "", $_GET["ref_id"])) {
$news_set = new ilSetting("news");
$enable_internal_rss = $news_set->get("enable_rss_for_internal");
$info->enableNewsEditing();
if ($enable_internal_rss) {
$info->setBlockProperty("news", "settings", true);
}
}
// add read / back button
/*
if ($ilAccess->checkAccess("read", "", $_GET["ref_id"]))
{
if ($_GET["obj_id"] > 0)
{
$this->ctrl->setParameter($this, "obj_id", $_GET["obj_id"]);
$info->addButton($this->lng->txt("back"),
$this->ctrl->getLinkTarget($this, "layout"));
}
else
{
$info->addButton($this->lng->txt("view"),
$this->ctrl->getLinkTarget($this, "layout"));
}
}*/
// show standard meta data section
$info->addMetaDataSections($this->lm->getId(), 0, $this->lm->getType());
if ($this->offlineMode()) {
$this->tpl->setContent($info->getHTML());
return $this->tpl->get();
} else {
// forward the command
$this->ctrl->forwardCommand($info);
//$this->tpl->setContent("aa");
$this->tpl->show();
}
}
示例9: getOverviewBody
//.........这里部分代码省略.........
$files_str .= ' <a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "selectBlog") . '">' . $lng->txt("exc_select_blog" . ($valid_blog ? "_change" : "")) . '</a>';
}
if ($files_str) {
$info->addProperty($lng->txt("exc_blog_returned"), $files_str);
}
if ($delivered_files && substr($delivered_files["filename"], -1) != "/") {
$ilCtrl->setParameterByClass("ilobjexercisegui", "delivered", $delivered_files["returned_id"]);
$dl_link = $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "download");
$ilCtrl->setParameterByClass("ilobjexercisegui", "delivered", "");
$info->addProperty($lng->txt("exc_files_returned"), "<a href=\"" . $dl_link . "\">" . $lng->txt("download") . "</a>");
}
break;
case ilExAssignment::TYPE_PORTFOLIO:
$files_str = "";
$valid_prtf = false;
if (sizeof($delivered_files)) {
$delivered_files = array_pop($delivered_files);
$portfolio_id = (int) $delivered_files["filetitle"];
include_once "Services/Portfolio/classes/class.ilObjPortfolio.php";
include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceAccessHandler.php";
$portfolio = new ilObjPortfolio($portfolio_id, false);
if ($portfolio->getTitle()) {
// #10116
// $prtf_link = ilWorkspaceAccessHandler::getGotoLink($portfolio_id, $portfolio_id)
$ilCtrl->setParameterByClass("ilobjportfoliogui", "prt_id", $portfolio_id);
$prtf_link = $ilCtrl->getLinkTargetByClass(array("ilpersonaldesktopgui", "ilobjportfoliogui"), "pages");
$ilCtrl->setParameterByClass("ilobjportfoliogui", "prt_id", "");
$files_str = '<a href="' . $prtf_link . '">' . $portfolio->getTitle() . '</a>';
$valid_prtf = true;
}
}
if (!$times_up) {
if (!$valid_prtf) {
$files_str .= '<a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "createPortfolio") . '">' . $lng->txt("exc_create_portfolio") . '</a>';
}
$files_str .= ' <a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "selectPortfolio") . '">' . $lng->txt("exc_select_portfolio" . ($valid_prtf ? "_change" : "")) . '</a>';
}
if ($files_str) {
$info->addProperty($lng->txt("exc_portfolio_returned"), $files_str);
}
if ($delivered_files && substr($delivered_files["filename"], -1) != "/") {
$ilCtrl->setParameterByClass("ilobjexercisegui", "delivered", $delivered_files["returned_id"]);
$dl_link = $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "download");
$ilCtrl->setParameterByClass("ilobjexercisegui", "delivered", "");
$info->addProperty($lng->txt("exc_files_returned"), "<a href=\"" . $dl_link . "\">" . $lng->txt("download") . "</a>");
}
break;
}
$last_sub = ilExAssignment::getLastSubmission($a_data["id"], $ilUser->getId());
if ($last_sub) {
$last_sub = ilDatePresentation::formatDate(new ilDateTime($last_sub, IL_CAL_DATETIME));
} else {
$last_sub = "---";
}
if ($last_sub != "---") {
$info->addProperty($lng->txt("exc_last_submission"), $last_sub);
}
// feedback from tutor
if ($a_data["type"] == ilExAssignment::TYPE_UPLOAD_TEAM) {
$feedback_id = "t" . ilExAssignment::getTeamIdByAssignment($a_data["id"], $ilUser->getId());
} else {
$feedback_id = $ilUser->getId();
}
$storage = new ilFSStorageExercise($a_data["exc_id"], $a_data["id"]);
$cnt_files = $storage->countFeedbackFiles($feedback_id);
$lpcomment = ilExAssignment::lookupCommentForUser($a_data["id"], $ilUser->getId());
$mark = ilExAssignment::lookupMarkOfUser($a_data["id"], $ilUser->getId());
$status = ilExAssignment::lookupStatusOfUser($a_data["id"], $ilUser->getId());
if ($lpcomment != "" || $mark != "" || $status != "notgraded" || $cnt_files > 0) {
$info->addSection($lng->txt("exc_feedback_from_tutor"));
if ($lpcomment != "") {
$info->addProperty($lng->txt("exc_comment"), $lpcomment);
}
if ($mark != "") {
$info->addProperty($lng->txt("exc_mark"), $mark);
}
if ($status == "") {
// $info->addProperty($lng->txt("status"),
// $lng->txt("message_no_delivered_files"));
} else {
if ($status != "notgraded") {
$img = '<img border="0" src="' . ilUtil::getImagePath("scorm/" . $status . ".png") . '" ' . ' alt="' . $lng->txt("exc_" . $status) . '" title="' . $lng->txt("exc_" . $status) . '" style="vertical-align:middle;"/>';
$info->addProperty($lng->txt("status"), $img . " " . $lng->txt("exc_" . $status));
}
}
if ($cnt_files > 0) {
$info->addSection($lng->txt("exc_fb_files"));
$files = $storage->getFeedbackFiles($feedback_id);
foreach ($files as $file) {
$ilCtrl->setParameterByClass("ilobjexercisegui", "file", urlencode($file));
$info->addProperty($file, $lng->txt("download"), $ilCtrl->getLinkTargetByClass("ilobjexercisegui", "downloadFeedbackFile"));
$ilCtrl->setParameter($this, "file", "");
}
}
}
}
}
$tpl->setVariable("CONTENT", $info->getHTML());
return $tpl->get();
}
示例10: getOverviewBody
//.........这里部分代码省略.........
if ($a_data["start_time"] > 0) {
$info->addProperty($lng->txt("rep_robj_xeph_start_time"), ilDatePresentation::formatDate(new ilDateTime($a_data["start_time"], IL_CAL_UNIX)));
}
$info->addProperty($lng->txt("rep_robj_xeph_edit_until"), ilDatePresentation::formatDate(new ilDateTime($a_data["deadline"], IL_CAL_UNIX)));
$time_str = $this->getTimeString($a_data["deadline"]);
if (!$not_started_yet) {
$info->addProperty($lng->txt("rep_robj_xeph_time_to_send"), "<b>" . $time_str . "</b>");
}
// public submissions
if ($this->eph->getShowSubmissions()) {
$ilCtrl->setParameterByClass("ilobjephorusgui", "ass_id", $a_data["id"]);
if ($a_data["deadline"] - time() <= 0) {
$link = '<a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjephorusgui", "listPublicSubmissions") . '">' . $lng->txt("rep_robj_xeph_list_submission") . '</a>';
$info->addProperty($lng->txt("rep_robj_xeph_public_submission"), $link);
} else {
$info->addProperty($lng->txt("rep_robj_xeph_public_submission"), $lng->txt("rep_robj_xeph_msg_public_submission"));
}
$ilCtrl->setParameterByClass("ilobjephorusgui", "ass_id", $_GET["ass_id"]);
}
$ilCtrl->setParameterByClass("ilobjephorusgui", "ass_id", $a_data["id"]);
if (!$not_started_yet) {
// download files
$files = ilEphAssignment::getFiles($a_data["eph_id"], $a_data["id"]);
if (count($files) > 0) {
$info->addSection($lng->txt("rep_robj_xeph_files"));
foreach ($files as $file) {
$ilCtrl->setParameterByClass("ilobjephorusgui", "file", urlencode($file["name"]));
$info->addProperty($file["name"], $lng->txt("rep_robj_xeph_download"), $ilCtrl->getLinkTargetByClass("ilobjephorusgui", "downloadFile"));
$ilCtrl->setParameterByClass("ilobjephorusgui", "file", "");
}
}
// submission
$info->addSection($lng->txt("rep_robj_xeph_your_submission"));
$delivered_files = ilEphAssignment::getDeliveredFiles($a_data["eph_id"], $a_data["id"], $ilUser->getId());
$times_up = false;
if ($a_data["deadline"] - time() < 0) {
$times_up = true;
}
$titles = array();
foreach ($delivered_files as $file) {
$titles[] = $file["filetitle"];
}
$files_str = implode($titles, ", ");
if ($files_str == "") {
$files_str = $lng->txt("rep_robj_xeph_message_no_delivered_files");
}
$ilCtrl->setParameterByClass("ilobjephorusgui", "ass_id", $a_data["id"]);
if (!$times_up) {
$files_str .= ' <a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjephorusgui", "submissionScreen") . '">' . (count($titles) == 0 ? $lng->txt("rep_robj_xeph_hand_in") : $lng->txt("rep_robj_xeph_edit_submission")) . '</a>';
} else {
if (count($titles) > 0) {
$files_str .= ' <a class="submit" href="' . $ilCtrl->getLinkTargetByClass("ilobjephorusgui", "submissionScreen") . '">' . $lng->txt("rep_robj_xeph_already_delivered_files") . '</a>';
}
}
$info->addProperty($lng->txt("rep_robj_xeph_files_returned"), $files_str);
$last_sub = ilEphAssignment::getLastSubmission($a_data["id"], $ilUser->getId());
if ($last_sub) {
$last_sub = ilDatePresentation::formatDate(new ilDateTime($last_sub, IL_CAL_DATETIME));
} else {
$last_sub = "---";
}
if ($last_sub != "---") {
$info->addProperty($lng->txt("rep_robj_xeph_last_submission"), $last_sub);
}
// feedback from tutor
$storage = new ilFSStorageEphorus($a_data["eph_id"], $a_data["id"]);
$cnt_files = $storage->countFeedbackFiles($ilUser->getId());
$lpcomment = ilEphAssignment::lookupCommentForUser($a_data["id"], $ilUser->getId());
$mark = ilEphAssignment::lookupMarkOfUser($a_data["id"], $ilUser->getId());
$status = ilEphAssignment::lookupStatusOfUser($a_data["id"], $ilUser->getId());
if ($lpcomment != "" || $mark != "" || $status != "notgraded" || $cnt_files > 0) {
$info->addSection($lng->txt("rep_robj_xeph_feedback_from_tutor"));
if ($lpcomment != "") {
$info->addProperty($lng->txt("rep_robj_xeph_comment"), $lpcomment);
}
if ($mark != "") {
$info->addProperty($lng->txt("rep_robj_xeph_mark"), $mark);
}
if ($status == "") {
$info->addProperty($lng->txt("rep_robj_xeph_status"), $lng->txt("rep_robj_xeph_message_no_delivered_files"));
} else {
if ($status != "notgraded") {
$img = '<img border="0" src="' . ilUtil::getImagePath("scorm/" . $status . ".png") . '" ' . ' alt="' . $lng->txt("rep_robj_xeph_" . $status) . '" title="' . $lng->txt("rep_robj_xeph_" . $status) . '" style="vertical-align:middle;"/>';
$info->addProperty($lng->txt("rep_robj_xeph_status"), $img . " " . $lng->txt("rep_robj_xeph_" . $status));
}
}
if ($cnt_files > 0) {
$info->addSection($lng->txt("fb_files"));
$files = $storage->getFeedbackFiles($ilUser->getId());
foreach ($files as $file) {
$ilCtrl->setParameterByClass("ilobjephorusgui", "file", urlencode($file));
$info->addProperty($file, $lng->txt("rep_robj_xeph_download"), $ilCtrl->getLinkTargetByClass("ilobjephorusgui", "downloadFeedbackFile"));
$ilCtrl->setParameter($this, "file", "");
}
}
}
}
$tpl->setVariable("CONTENT", $info->getHTML());
return $tpl->get();
}
示例11: showContent
//.........这里部分代码省略.........
$this->pluginObj->includeClass('class.ilAdobeConnectQuota.php');
$this->pluginObj->includeClass("class.ilObjAdobeConnectAccess.php");
$is_member = ilObjAdobeConnectAccess::_hasMemberRole($ilUser->getId(), $this->object->getRefId());
$is_admin = ilObjAdobeConnectAccess::_hasAdminRole($ilUser->getId(), $this->object->getRefId());
if ($this->access->checkAccess("write", "", $this->object->getRefId()) || $is_member || $is_admin) {
$presentation_url = $settings->getPresentationUrl();
$form = new ilPropertyFormGUI();
$form->setTitle($this->pluginObj->txt('access_meeting_title'));
$this->object->doRead();
if ($this->object->getStartDate() != NULL) {
$ilAdobeConnectUser = new ilAdobeConnectUserUtil($this->user->getId());
$ilAdobeConnectUser->ensureAccountExistance();
$xavc_login = $ilAdobeConnectUser->getXAVCLogin();
$quota = new ilAdobeConnectQuota();
// show button
if (($this->object->getPermanentRoom() == 1 || $this->doProvideAccessLink()) && $this->object->isParticipant($xavc_login)) {
$this->pluginObj->includeClass('class.ilAdobeConnectRoles.php');
$xavcRoles = new ilAdobeConnectRoles($this->object->getRefId());
if (!$quota->mayStartScheduledMeeting($this->object->getScoId())) {
$href = $this->txt("meeting_not_available_no_slots");
$button_disabled = true;
} else {
if (!$xavcRoles->isAdministrator($this->user->getId()) && count($current_pax = $this->object->getCurrentPax()) > $this->object->getMaxPax() && !in_array($this->object->getPrincipalId($xavc_login), $current_pax)) {
$href = $this->txt("meeting_full");
$button_disabled = true;
} else {
$href = '<a href="' . $this->ctrl->getLinkTarget($this, 'performSso') . '" target="_blank" >' . $presentation_url . $this->object->getURL() . '</a>';
$button_disabled = false;
}
}
} else {
$href = $this->txt("meeting_not_available");
$button_disabled = true;
}
if ($button_disabled == true) {
$button_txt = $href;
} else {
$button_txt = $this->pluginObj->txt('enter_vc');
}
$button_target = ILIAS_HTTP_PATH . "/" . $this->ctrl->getLinkTarget($this, 'performSso', '', false, false);
$button_tpl = new ilTemplate($this->pluginObj->getDirectory() . "/templates/default/tpl.bigbutton.html", true, true);
$button_tpl->setVariable('BUTTON_TARGET', $button_target);
$button_tpl->setVariable('BUTTON_TEXT', $button_txt);
$big_button = $button_tpl->get();
$info->addSection('');
if ($button_disabled == true) {
$info->addProperty('', $href);
} else {
$info->addProperty('', $big_button . "<br />");
}
// show instructions
if (strlen($this->object->getInstructions()) > 1) {
$info->addSection($this->lng->txt('exc_instruction'));
$info->addProperty('', nl2br($this->object->getInstructions()));
}
// show contact info
if (strlen($this->object->getContactInfo()) > 1) {
$info->addSection($this->pluginObj->txt('contact_information'));
$info->addProperty('', nl2br($this->object->getContactInfo()));
}
//show contents
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->object->getRefId(), AdobeConnectPermissions::PERM_READ_CONTENTS) && $this->object->getReadContents('content') || ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_UPLOAD_CONTENT) || $has_write_permission) {
$admins_only = '';
if (!$this->object->getReadContents('content')) {
$admins_only = $this->pluginObj->txt('admins_only');
}
$info->addSection($this->pluginObj->txt('file_uploads') . ' ' . $admins_only);
$info->setFormAction($this->ctrl->getFormAction($this, 'showContent'));
$has_access = false;
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_UPLOAD_CONTENT) || $has_write_permission) {
$has_access = true;
$tpl_sub_button = new ilTemplate("Services/InfoScreen/templates/default/tpl.submitbuttons.html", true, true);
$tpl_sub_button->setVariable('BTN_NAME', $this->txt("add_new_content"));
$tpl_sub_button->setVariable('BTN_COMMAND', 'showAddContent');
$info->addProperty('', $tpl_sub_button->get());
}
$info->addProperty('', $this->viewContents($has_access));
}
// show records
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->object->getRefId(), AdobeConnectPermissions::PERM_READ_RECORDS) && $this->object->getReadRecords() || ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_EDIT_RECORDS) || $has_write_permission) {
$has_access = false;
$admins_only = '';
if (ilXAVCPermissions::hasAccess($ilUser->getId(), $this->ref_id, AdobeConnectPermissions::PERM_EDIT_RECORDS) || $has_write_permission) {
$has_access = true;
if (!$this->object->getReadRecords()) {
$admins_only = $this->pluginObj->txt('admins_only');
}
}
$info->addSection($this->pluginObj->txt('records') . ' ' . $admins_only);
$info->addProperty('', $this->viewRecords($has_access, 'record'));
}
} else {
ilUtil::sendFailure($this->txt('error_connect_ac_server'));
}
}
$info->hideFurtherSections('', true);
$tpl->setContent($info->getHTML() . $this->getPerformTriggerHtml());
$tpl->setPermanentLink('xavc', $this->object->getRefId());
$tpl->addILIASFooter();
}