ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilECSImportedContentTableGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once('Services/Table/classes/class.ilTable2GUI.php');
25 
35 {
36  protected $lng;
37  protected $ctrl;
38 
46  public function __construct($a_parent_obj, $a_parent_cmd = '')
47  {
48  global $DIC;
49 
50  $lng = $DIC['lng'];
51  $ilCtrl = $DIC['ilCtrl'];
52 
53  $this->lng = $lng;
54  $this->ctrl = $ilCtrl;
55 
56  parent::__construct($a_parent_obj, $a_parent_cmd);
57  $this->addColumn($this->lng->txt('title'), 'title', '25%');
58  $this->addColumn($this->lng->txt('res_links_short'), 'link', '25%');
59  $this->addColumn($this->lng->txt('ecs_imported_from'), 'from', '15%');
60  $this->addColumn($this->lng->txt('ecs_meta_data'), 'md', '25%');
61  $this->addColumn($this->lng->txt('last_update'), 'last_update', '10%');
62  $this->setRowTemplate('tpl.content_row.html', 'Services/WebServices/ECS');
63  $this->setDefaultOrderField('title');
64  $this->setDefaultOrderDirection('asc');
65  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
66  }
67 
75  public function fillRow($a_set)
76  {
77  global $DIC;
78 
79  $tree = $DIC['tree'];
80 
81  include_once('./Services/Link/classes/class.ilLink.php');
82 
83  $this->tpl->setVariable('VAL_TITLE', $a_set['title']);
84  #$this->tpl->setVariable('VAL_LINK',ilLink::_getLink($a_set['ref_id'],'rcrs'));
85  $this->tpl->setVariable('VAL_DESC', $a_set['desc']);
86  $this->tpl->setVariable('VAL_REMOTE', $a_set['from']);
87  $this->tpl->setVariable('VAL_REMOTE_INFO', $a_set['from_info']);
88  $this->tpl->setVariable('TXT_EMAIL', $this->lng->txt('ecs_email'));
89  $this->tpl->setVariable('TXT_DNS', $this->lng->txt('ecs_dns'));
90  $this->tpl->setVariable('TXT_ABR', $this->lng->txt('ecs_abr'));
91  $this->tpl->setVariable(
92  'VAL_LAST_UPDATE',
93  ilDatePresentation::formatDate(new ilDateTime($a_set['last_update'], IL_CAL_DATETIME))
94  );
95 
96  // Links
97  foreach (ilObject::_getAllReferences($a_set['obj_id']) as $ref_id) {
98  $parent = $tree->getParentId($ref_id);
99  $p_obj_id = ilObject::_lookupObjId($parent);
100  $p_title = ilObject::_lookupTitle($p_obj_id);
101  $p_type = ilObject::_lookupType($p_obj_id);
102  $this->tpl->setCurrentBlock('link');
103  $this->tpl->setVariable('LINK_IMG', ilUtil::getTypeIconPath($p_type, $p_obj_id, 'tiny'));
104  $this->tpl->setVariable('LINK_CONTAINER', $p_title);
105  $this->tpl->setVariable('LINK_LINK', ilLink::_getLink($parent, $p_type));
106  $this->tpl->parseCurrentBlock();
107  }
108 
109  $this->tpl->setVariable('TXT_TERM', $this->lng->txt('ecs_field_term'));
110  $this->tpl->setVariable('TXT_CRS_TYPE', $this->lng->txt('ecs_field_courseType'));
111  $this->tpl->setVariable('TXT_CRS_ID', $this->lng->txt('ecs_field_courseID'));
112  $this->tpl->setVariable('TXT_CREDITS', $this->lng->txt('ecs_field_credits'));
113  $this->tpl->setVariable('TXT_ROOM', $this->lng->txt('ecs_field_room'));
114  $this->tpl->setVariable('TXT_CYCLE', $this->lng->txt('ecs_field_cycle'));
115  $this->tpl->setVariable('TXT_SWS', $this->lng->txt('ecs_field_semester_hours'));
116  $this->tpl->setVariable('TXT_START', $this->lng->txt('ecs_field_begin'));
117  $this->tpl->setVariable('TXT_END', $this->lng->txt('ecs_field_end'));
118  $this->tpl->setVariable('TXT_LECTURER', $this->lng->txt('ecs_field_lecturer'));
119 
120  include_once('./Services/WebServices/ECS/classes/class.ilECSDataMappingSettings.php');
121  $settings = ilECSDataMappingSettings::getInstanceByServerId($a_set['sid']);
122 
123  include_once "Services/WebServices/ECS/classes/class.ilECSUtils.php";
125 
126  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'lecturer')) {
127  $this->tpl->setVariable('VAL_LECTURER', isset($values[$field]) ? $values[$field] : '--');
128  }
129  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'term')) {
130  $this->tpl->setVariable('VAL_TERM', isset($values[$field]) ? $values[$field] : '--');
131  }
132  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'courseID')) {
133  $this->tpl->setVariable('VAL_CRS_ID', isset($values[$field]) ? $values[$field] : '--');
134  }
135  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'courseType')) {
136  $this->tpl->setVariable('VAL_CRS_TYPE', isset($values[$field]) ? $values[$field] : '--');
137  }
138  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'credits')) {
139  $this->tpl->setVariable('VAL_CREDITS', isset($values[$field]) ? $values[$field] : '--');
140  }
141  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'semester_hours')) {
142  $this->tpl->setVariable('VAL_SWS', isset($values[$field]) ? $values[$field] : '--');
143  }
144  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'room')) {
145  $this->tpl->setVariable('VAL_ROOM', isset($values[$field]) ? $values[$field] : '--');
146  }
147  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'cycle')) {
148  $this->tpl->setVariable('VAL_CYCLE', isset($values[$field]) ? $values[$field] : '--');
149  }
150  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'begin')) {
151  $this->tpl->setVariable('VAL_START', isset($values[$field]) ? ilDatePresentation::formatDate(new ilDateTime($values[$field], IL_CAL_UNIX)) : '--');
152  }
153  if ($field = $settings->getMappingByECSName(ilECSDataMappingSetting::MAPPING_IMPORT_RCRS, 'end')) {
154  $this->tpl->setVariable('VAL_END', isset($values[$field]) ? ilDatePresentation::formatDate(new ilDateTime($values[$field], IL_CAL_UNIX)) : '--');
155  }
156  }
157 
165  public function parse($a_rcrs)
166  {
167  global $DIC;
168 
169  $ilObjDataCache = $DIC['ilObjDataCache'];
170 
171  // Preload object data
172  $ilObjDataCache->preloadReferenceCache($a_rcrs);
173 
174  // Read participants
175  include_once('./Modules/RemoteCourse/classes/class.ilObjRemoteCourse.php');
176  include_once('./Services/WebServices/ECS/classes/class.ilECSCommunityReader.php');
177  include_once './Services/WebServices/ECS/classes/class.ilECSImport.php';
178 
179  // read obj_ids
180  $obj_ids = array();
181  foreach ($a_rcrs as $rcrs_ref_id) {
182  $obj_id = $ilObjDataCache->lookupObjId($rcrs_ref_id);
183  $obj_ids[$obj_id] = $ilObjDataCache->lookupObjId($rcrs_ref_id);
184  }
185 
186  foreach ($obj_ids as $obj_id => $obj_id) {
187  $tmp_arr['obj_id'] = $obj_id;
188  $tmp_arr['sid'] = ilECSImport::lookupServerId($obj_id);
189  $tmp_arr['title'] = $ilObjDataCache->lookupTitle($obj_id);
190  $tmp_arr['desc'] = $ilObjDataCache->lookupDescription($obj_id);
191  $tmp_arr['md'] = '';
192 
193  $mid = ilObjRemoteCourse::_lookupMID($obj_id);
194 
195  if ($tmp_arr['sid']) {
196  try {
198  } catch (ilECSConnectorException $e) {
199  $reader = null;
200  }
201 
202  if ($reader and ($participant = $reader->getParticipantByMID($mid))) {
203  $tmp_arr['from'] = $participant->getParticipantName();
204  $tmp_arr['from_info'] = $participant->getDescription();
205  }
206  } else {
207  $tmp_arr['from'] = $this->lng->txt("ecs_server_deleted");
208  }
209 
210  $tmp_arr['last_update'] = $ilObjDataCache->lookupLastUpdate($obj_id);
211  $content[] = $tmp_arr;
212  }
213 
214  $this->setData($content ? $content : array());
215  }
216 }
static getInstanceByServerId($a_server_id)
Get singleton instance.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
const IL_CAL_DATETIME
global $DIC
Definition: saml.php:7
static _lookupMID($a_obj_id)
lookup owner mid
static _lookupTitle($a_id)
lookup object title
const IL_CAL_UNIX
static getTypeIconPath($a_type, $a_obj_id, $a_size='small')
Get type icon path path Return image path for icon_xxx.pngs Or (if enabled) path to custom icon Depre...
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _getAllReferences($a_id)
get all reference ids of object
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
static getInstanceByServerId($a_server_id)
Get instance by server id.
Class ilTable2GUI.
$values
static getAdvancedMDValuesForObjId($a_obj_id)
Get advanced metadata values for object id.
static _lookupObjId($a_id)
Date and time handling
static lookupServerId($a_obj_id)
Lookup server id of imported content <type> $ilDB.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
__construct($a_parent_obj, $a_parent_cmd='')
constructor