Public Member Functions | |
| _getFrame ($a_class, $a_type="") | |
| get content frame name | |
Definition at line 31 of file class.ilFrameTargetInfo.php.
| ilFrameTargetInfo::_getFrame | ( | $ | a_class, | |
| $ | a_type = "" | |||
| ) |
get content frame name
Definition at line 36 of file class.ilFrameTargetInfo.php.
References $_SESSION.
Referenced by ilSearchresultGUI::__formatLink(), ilLPListOfSettingsGUI::__showCollectionTable(), ilObjUserGUI::addAdminLocatorItems(), ilObjLanguageExtGUI::addAdminLocatorItems(), ilObjChatGUI::addAdminLocatorItems(), ilObjStyleSheetGUI::addAdminLocatorItems(), ilObjRoleTemplateGUI::addAdminLocatorItems(), ilObjRoleGUI::addAdminLocatorItems(), ilObjectGUI::addAdminLocatorItems(), ilObjContentObjectGUI::addLocations(), ilLocatorGUI::addRepositoryItems(), ilTableOfContentsExplorer::buildFrameTarget(), ilRepositoryExplorer::buildFrameTarget(), ilAdministrationExplorer::buildFrameTarget(), ilObjQuestionPoolGUI::createObject(), ilObjTestGUI::createObject(), ilObjSurveyQuestionPoolGUI::createObject(), ilObjSurveyGUI::createObject(), ilObjMediaPoolGUI::createObject(), ilObjContentObjectGUI::createObject(), ilObjFileBasedLMGUI::createObject(), ilObjGlossaryGUI::createObject(), ilObjForumGUI::createObject(), ilGlossaryLocatorGUI::display(), ilForumLocatorGUI::display(), ilObjSystemFolderGUI::displayList(), ilCourseContentGUI::editTimings(), ilMailFolderGUI::enterFolderData(), ilLMPageObjectGUI::executeCommand(), ilObjectGUI::getAdminTabs(), ilObjLinkResourceListGUI::getCommandFrame(), ilObjQuestionPoolListGUI::getCommandFrame(), ilObjTestListGUI::getCommandFrame(), ilObjSurveyQuestionPoolListGUI::getCommandFrame(), ilObjSurveyListGUI::getCommandFrame(), ilObjSAHSLearningModuleListGUI::getCommandFrame(), ilObjMediaPoolListGUI::getCommandFrame(), ilObjMediaCastListGUI::getCommandFrame(), ilObjLearningModuleListGUI::getCommandFrame(), ilObjDlBookListGUI::getCommandFrame(), ilObjFileBasedLMListGUI::getCommandFrame(), ilObjGlossaryListGUI::getCommandFrame(), ilObjForumListGUI::getCommandFrame(), ilObjFileListGUI::getCommandFrame(), ilObjExternalFeedListGUI::getCommandFrame(), ilObjExerciseListGUI::getCommandFrame(), ilLMPresentationGUI::getLinkXML(), ilLMPageObjectGUI::getLinkXML(), ilGlossaryPresentationGUI::getLinkXML(), ilObjForumListGUI::getProperties(), ilLMPresentationGUI::ilLMSubMenu(), ilLMPresentationGUI::ilLocator(), ilTableOfContentsExplorer::ilTableOfContentsExplorer(), ilLMPresentationGUI::ilTOC(), ilObjSAHSLearningModuleGUI::importObject(), ilUtil::infoPanel(), ilObjGlossaryGUI::listTerms(), ilObjForumGUI::prepareThreadScreen(), ilObjContentObjectGUI::properties(), ilObjContentObjectGUI::setilLMMenu(), ilContainerGUI::setPageEditorTabs(), ilTemplate::setTreeFlatIcon(), ilContainerGUI::showAdministrationPanel(), ilMailFolderGUI::showMail(), ilObjectGUI::showUpperIcon(), ilBookmarkAdministrationGUI::view(), ilObjGlossaryGUI::viewObject(), and ilObjForumGUI::viewThreadObject().
{
switch($a_type)
{
default:
switch($a_class)
{
case "RepositoryContent":
if ($_SESSION["il_rep_mode"] == "flat" or !isset($_SESSION['il_rep_mode']))
{
//return "bottom";
return "_top";
}
else
{
return "rep_content";
}
case "MainContent":
//return "bottom";
return "_top";
// frame for external content (e.g. web bookmarks, external links)
case "ExternalContent":
return "_blank";
}
}
return "";
}
Here is the caller graph for this function:
1.7.1