ILIAS
eassessment Revision 61809
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
ILIAS
Todo List
Deprecated List
Modules
Namespaces
Data Structures
Files
File List
classes
OLE
Spreadsheet
class.ilBenchmark.php
class.ilBrowser.php
class.ilConditionHandler.php
class.ilConditionHandlerInterface.php
class.ilConditionSelector.php
class.ilCtrl.php
class.ilCtrl2.php
class.ilDOMXML.php
class.ilErrorHandling.php
class.ilExplorer.php
class.ilFile.php
class.ilFileData.php
class.ilFileDataGroup.php
class.ilFileDataImport.php
class.ilFileDataImportGroup.php
class.ilFileDataImportMail.php
class.ilFileDataMail.php
class.ilFileExplorer.php
class.ilFileSystemGUI.php
class.ilFOPUtil.php
class.ilFormat.php
class.ilFrameTargetInfo.php
class.ilHistory.php
class.ilHistoryGUI.php
class.ilHTTPS.php
class.ilias.php
class.ilIniFile.php
class.ilLink.php
class.ilLinkChecker.php
class.ilLinkCheckNotify.php
class.ilNestedSetXML.php
class.ilObject.php
class.ilObjectAccess.php
class.ilObjectDataCache.php
class.ilObjectFactory.php
class.ilObjectGUI.php
class.ilObjectGUIAdapter.php
class.ilObjectListGUI.php
class.ilObjectStatusGUI.php
class.ilPasteIntoMultipleItemsExplorer.php
class.ilProxyException.php
class.ilProxySettings.php
class.ilRoleDesktopItemSelector.php
class.ilSaxParser.php
class.ilSaxParserException.php
class.ilSearch.php
class.ilStatistics.php
class.ilTabsGUI.php
class.ilTemplate.php
class.ilTemplateHTMLITX.php
class.ilTemplateITX.php
class.ilTinyMCE.php
class.ilValidator.php
class.ilVirusScanner.php
class.ilVirusScannerAntiVir.php
class.ilVirusScannerClamAV.php
class.ilVirusScannerFactory.php
class.ilVirusScannerSophos.php
class.ilXML2DOM.php
template.class.ilObjModuleName.php
template.class.ilObjModuleNameGUI.php
cron
include
Modules
Services
setup
sso
webservice
calendar.php
confirmReg.php
error.php
feed.php
goto.php
ilias.php
index.php
login.php
logout.php
payment.php
privfeed.php
pwassist.php
register.php
repository.php
rootindex.php
sessioncheck.php
shib_login.php
shib_logout.php
start.php
studip_referrer.php
webdav.php
Globals
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
template.class.ilObjModuleNameGUI.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13
require_once
"class.ilObjectGUI.php"
;
14
15
class
ilObj<module_name>
GUI
extends
ilObjectGUI
16
{
21
function
ilObj<module_name>
GUI
($a_data,$a_id,$a_call_by_reference,$a_prepare_output =
true
)
22
{
23
$this->type =
"<type ID>"
;
24
$this->
ilObjectGUI
($a_data,$a_id,$a_call_by_reference,$a_prepare_output);
25
}
26
31
function
saveObject
()
32
{
33
global $rbacadmin;
34
35
// create and insert forum in objecttree
36
$newObj = parent::saveObject();
37
38
// put here object specific stuff
39
40
// always send a message
41
ilUtil::sendInfo
($this->lng->txt(
"object_added"
),
true
);
42
43
ilUtil::redirect
($this->
getReturnLocation
(
"save"
,$this->ctrl->getLinkTarget($this,
""
,
""
,
false
,
false
)));
44
}
45
51
function
getTabs
(&$tabs_gui)
52
{
53
// tabs are defined manually here. The autogeneration via objects.xml will be deprecated in future
54
// for usage examples see ilObjGroupGUI or ilObjSystemFolderGUI
55
}
56
}
// END class.ilObj<module_name>
57
?>
classes
template.class.ilObjModuleNameGUI.php
Generated on Mon Apr 25 2016 19:01:07 for ILIAS by
1.8.1.2 (using
Doxyfile
)