00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 include_once FORM_PATH."formWebObj.php";
00024
00028 class roc_list extends WebObject
00029 {
00030 function init()
00031 {
00032 $this->addSVar('mode', 'view');
00033 }
00034
00035 function on_set_mode($event_args)
00036 {
00037 $mode = $event_args['mode'];
00038
00039
00040 if ($mode=='edit' and !is_goc_admin()) return;
00041
00042 if ($mode=='view')
00043 {
00044 WebApp::setSVar('roc_edit->mode', 'hidden');
00045 }
00046
00047 $this->setSVar('mode', $mode);
00048 }
00049
00050 function on_del($event_args)
00051 {
00052 include_once TPL.'/goc/delete.php';
00053 $roc_id = $event_args['ROC_id'];
00054 $roc_list = "'$roc_id'";
00055
00056
00057 del_rocs($roc_list);
00058
00059
00060 include_once MENU.'/rebuild_menu.php';
00061 }
00062
00063 function on_add($event_args)
00064 {
00065 WebApp::setSVar('roc_edit->mode', 'add');
00066 WebApp::setSVar('roc_edit->ROC_id', UNDEFINED);
00067 }
00068
00069 function on_edit($event_args)
00070 {
00071 WebApp::setSVar('roc_edit->mode', 'edit');
00072 WebApp::setSVar('roc_edit->ROC_id', $event_args['ROC_id']);
00073 }
00074 }
00075 ?>