ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilSessionParticipantsTableGUI Class Reference
+ Inheritance diagram for ilSessionParticipantsTableGUI:
+ Collaboration diagram for ilSessionParticipantsTableGUI:

Public Member Functions

 __construct ($a_parent_obj)
 Constructor.
 enableRegistration ($a_status)
 enable registration
 isRegistrationEnabled ()
 is registration enabled
 setParticipants ($a_part)
 set participants
 getParticipants ()
 get participants
 parse ()
 parse table
 fillRow ($a_set)
 fill row
- Public Member Functions inherited from ilTable2GUI
 __construct ($a_parent_obj, $a_parent_cmd="")
 Constructor.
 getParentObject ()
 Get parent object.
 getParentCmd ()
 Get parent command.
 setNoEntriesText ($a_text)
 Set text for an empty table.
 getNoEntriesText ()
 Get text for an empty table.
 setEnableTitle ($a_enabletitle)
 Set Enable Title.
 getEnableTitle ()
 Get Enable Title.
 setEnableHeader ($a_enableheader)
 Set Enable Header.
 getEnableHeader ()
 Get Enable Header.
 setTitle ($a_title, $a_icon=0, $a_icon_alt=0)
 set table title public
 setOrderField ($a_order_field)
 set order column
 getOrderField ()
 setData ($a_data)
 set table data public
 getData ()
 dataExists ()
 setPrefix ($a_prefix)
 set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort separately) public
 setFormAction ($a_form_action)
 Set Form action parameter.
 getFormAction ()
 Get Form action parameter.
 setFormName ($a_formname)
 Set Form name.
 getFormName ()
 Get Form name.
 setId ($a_val)
 Set id.
 getId ()
 Get element id.
 getSelectAllCheckbox ()
 Get the name of the checkbox that should be toggled with a select all button.
 setSelectAllCheckbox ($a_select_all_checkbox)
 Set the name of the checkbox that should be toggled with a select all button.
 setRowTemplate ($a_template, $a_template_dir="")
 Set row template.
 setDefaultOrderField ($a_defaultorderfield)
 Set Default order field.
 getDefaultOrderField ()
 Get Default order field.
 setDefaultOrderDirection ($a_defaultorderdirection)
 Set Default order direction.
 getDefaultOrderDirection ()
 Get Default order direction.
 addCommandButton ($a_cmd, $a_text)
 Add Command button.
 setCloseCommand ($a_link)
 Add command for closing table.
 addMultiCommand ($a_cmd, $a_text)
 Add Command button.
 addHeaderCommand ($a_href, $a_text, $a_target="", $a_img="")
 Add Header Command (Link) (Image needed for now)
 addColumn ($a_text, $a_sort_field="", $a_width="")
 Add a column to the header.
 getNavParameter ()
 setOrderLink ($sort_field, $order_dir)
 fillHeader ()
 getHTML ()
 numericOrdering ($a_field)
 Should this field be sorted numeric?
 render ()
 render table public
 fillFooter ()
 Fill footer row.
 getLinkbar ($a_num)
 Get previous/next linkbar.
 fillActionRow ()
 Fill Action Row.
 setHeaderHTML ($html)
 set header html
- Public Member Functions inherited from ilTableGUI
 ilTableGUI ($a_data=0, $a_global_tpl=true)
 Constructor.
 setTemplate (&$a_tpl)
 set template public
getTemplateObject ()
 setHelp ($a_help_page, $a_help_icon, $a_help_icon_alt=0)
 set table help page public
 setHeaderNames ($a_header_names)
 set table header names public
 getColumnCount ()
 Returns the column count based on the number of the header row columns public.
 setHeaderVars ($a_header_vars, $a_header_params=0)
 set table header vars public
 setColumnWidth ($a_column_width)
 set table column widths public
 setOneColumnWidth ($a_column_width, $a_column_number)
 set one table column width public
 setMaxCount ($a_max_count)
 set max.
 setLimit ($a_limit=0, $a_default_limit=0)
 set max.
 getLimit ()
 Get limit.
 setOffset ($a_offset)
 set dataset offset public
 getOffset ()
 Get offset.
 setOrderColumn ($a_order_column=0, $a_default_column=0)
 set order column public
 getOrderColumn ()
 Get order column.
 setOrderDirection ($a_order_direction)
 set order direction public
 getOrderDirection ()
 Get order direction.
 setFooter ($a_style, $a_previous=0, $a_next=0)
 set order direction public
 enable ($a_module_name)
 enables particular modules of table public
 disable ($a_module_name)
 diesables particular modules of table public
 sortData ()
 renderHeader ()
 setStyle ($a_element, $a_style)
 getStyle ($a_element)
 setBase ($a_base)
 Set Base script name (deprecated, only use this for workarounds).
 getBase ()
 Get Base script name (deprecated, only use this for workarounds).
 clearActionButtons ()
 addActionButton ($btn_name, $btn_value)

Protected Member Functions

 init ()
 init table

Private Attributes

 $session_participants = null
 $participants = array()
 $reg_enabled = true

Additional Inherited Members

- Data Fields inherited from ilTableGUI
 $title
 $icon
 $icon_alt
 $help_page
 $help_icon
 $help_icon_alt
 $header_names
 $header_vars
 $linkbar_vars
 $data
 $column_count
 $column_width
 $max_count
 $limit
 $max_limit = false
 $offset
 $order_column
 $order_direction
 $footer_style
 $footer_previous
 $footer_next
 $lang_support = true
 $global_tpl
 $form_name
 $select_all_checkbox
 $action_buttons
 $prefix
 $base = ""
 $enabled
 $styles
- Protected Attributes inherited from ilTable2GUI
 $close_command = ""

Detailed Description

Author
Stefan Meyer smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 33 of file class.ilSessionParticipantsTableGUI.php.

Constructor & Destructor Documentation

ilSessionParticipantsTableGUI::__construct (   $a_parent_obj)

Constructor.

public

Parameters
objectparent object
Returns

Definition at line 46 of file class.ilSessionParticipantsTableGUI.php.

References $ilCtrl, $lng, and ilTable2GUI\getParentObject().

{
global $lng,$ilCtrl;
$this->lng = $lng;
$this->lng->loadLanguageModule('sess');
$this->lng->loadLanguageModule('crs');
$this->lng->loadLanguageModule('trac');
$this->ctrl = $ilCtrl;
parent::__construct($a_parent_obj,'members');
$this->session_participants = new ilEventParticipants($this->getParentObject()->object->getId());
}

+ Here is the call graph for this function:

Member Function Documentation

ilSessionParticipantsTableGUI::enableRegistration (   $a_status)

enable registration

public

Parameters
boolstatus
Returns

Definition at line 68 of file class.ilSessionParticipantsTableGUI.php.

{
$this->reg_enabled = $a_status;
}
ilSessionParticipantsTableGUI::fillRow (   $a_set)

fill row

public

Parameters
arraydata set

Reimplemented from ilTable2GUI.

Definition at line 144 of file class.ilSessionParticipantsTableGUI.php.

References ilUtil\getImagePath(), and isRegistrationEnabled().

{
$this->tpl->setVariable('VAL_ID',$a_set['id']);
$this->tpl->setVariable('LASTNAME',$a_set['lastname']);
$this->tpl->setVariable('FIRSTNAME',$a_set['firstname']);
$this->tpl->setVariable('LOGIN',$a_set['login']);
$this->tpl->setVariable('MARK',$a_set['mark']);
$this->tpl->setVariable('COMMENT',$a_set['comment']);
$this->tpl->setVariable('PART_CHECKED',$a_set['participated'] ? 'checked="checked"' : '');
if($this->isRegistrationEnabled())
{
$this->tpl->setCurrentBlock('registered_col');
if($a_set['registered'])
{
$this->tpl->setVariable('IMAGE_REGISTERED',ilUtil::getImagePath('icon_ok.gif'));
$this->tpl->setVariable('REGISTERED',$this->lng->txt('event_registered'));
}
else
{
$this->tpl->setVariable('IMAGE_REGISTERED',ilUtil::getImagePath('icon_not_ok.gif'));
$this->tpl->setVariable('REGISTERED',$this->lng->txt('event_not_registered'));
}
$this->tpl->parseCurrentBlock();
}
}

+ Here is the call graph for this function:

ilSessionParticipantsTableGUI::getParticipants ( )

get participants

public

Returns

Definition at line 102 of file class.ilSessionParticipantsTableGUI.php.

References $participants.

Referenced by parse().

{
}

+ Here is the caller graph for this function:

ilSessionParticipantsTableGUI::init ( )
protected

init table

protected

Parameters
@return

Definition at line 179 of file class.ilSessionParticipantsTableGUI.php.

References ilTable2GUI\addColumn(), ilTable2GUI\addCommandButton(), ilTableGUI\enable(), isRegistrationEnabled(), ilTable2GUI\setDefaultOrderField(), ilTable2GUI\setFormAction(), ilTable2GUI\setFormName(), and ilTable2GUI\setRowTemplate().

Referenced by parse().

{
$this->setFormName('participants');
$this->setFormAction($this->ctrl->getFormAction($this->getParentObject(),'members'));
$this->addColumn($this->lng->txt('lastname'),'name','30%');
$this->addColumn($this->lng->txt('trac_mark'),'mark');
$this->addColumn($this->lng->txt('trac_comment'),'comment');
if($this->isRegistrationEnabled())
{
$this->addColumn($this->lng->txt('event_tbl_registered'),'registered');
}
$this->addColumn($this->lng->txt('event_tbl_participated'),'participated');
$this->setRowTemplate("tpl.sess_members_row.html","Modules/Session");
$this->addCommandButton('updateMembers',$this->lng->txt('save'));
$this->enable('sort');
$this->enable('header');
$this->setDefaultOrderField('name');
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilSessionParticipantsTableGUI::isRegistrationEnabled ( )

is registration enabled

public

Returns

Definition at line 79 of file class.ilSessionParticipantsTableGUI.php.

References $reg_enabled.

Referenced by fillRow(), and init().

{
}

+ Here is the caller graph for this function:

ilSessionParticipantsTableGUI::parse ( )

parse table

public

Returns

Definition at line 113 of file class.ilSessionParticipantsTableGUI.php.

References ilObjUser\_lookupLogin(), ilObjUser\_lookupName(), getParticipants(), init(), and ilTable2GUI\setData().

{
$this->init();
foreach($this->getParticipants() as $participant_id)
{
$usr_data = $this->session_participants->getUser($participant_id);
$tmp_data['id'] = $participant_id;
$name = ilObjUser::_lookupName($participant_id);
$tmp_data['name'] = $name['lastname'];
$tmp_data['lastname'] = $name['lastname'];
$tmp_data['firstname'] = $name['firstname'];
$tmp_data['login'] = ilObjUser::_lookupLogin($participant_id);
$tmp_data['mark'] = $usr_data['mark'];
$tmp_data['comment'] = $usr_data['comment'];
$tmp_data['participated'] = $this->session_participants->hasParticipated($participant_id);
$tmp_data['registered'] = $this->session_participants->isRegistered($participant_id);
$part[] = $tmp_data;
}
$this->setData($part ? $part : array());
}

+ Here is the call graph for this function:

ilSessionParticipantsTableGUI::setParticipants (   $a_part)

set participants

public

Parameters
arrayparticipants
Returns

Definition at line 91 of file class.ilSessionParticipantsTableGUI.php.

{
$this->participants = $a_part;
}

Field Documentation

ilSessionParticipantsTableGUI::$participants = array()
private

Definition at line 36 of file class.ilSessionParticipantsTableGUI.php.

Referenced by getParticipants().

ilSessionParticipantsTableGUI::$reg_enabled = true
private

Definition at line 37 of file class.ilSessionParticipantsTableGUI.php.

Referenced by isRegistrationEnabled().

ilSessionParticipantsTableGUI::$session_participants = null
private

Definition at line 35 of file class.ilSessionParticipantsTableGUI.php.


The documentation for this class was generated from the following file: