ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilPCLoginPageElementGUI Class Reference

Class ilLoginPageElementGUI. More...

+ Inheritance diagram for ilPCLoginPageElementGUI:
+ Collaboration diagram for ilPCLoginPageElementGUI:

Public Member Functions

 ilPCLoginPageElementGUI (&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id="")
 Constructor public.
 getLoginPageElements ()
 Get login page elements.
 executeCommand ()
 execute command
 insert ()
 Insert new resources component form.
 edit ($a_insert=false)
 Edit resources form.
 create ()
 Create new Login Page Element.
 update ()
 Update Login page element.
- Public Member Functions inherited from ilPageContentGUI
 ilPageContentGUI (&$a_pg_obj, &$a_content_obj, $a_hier_id=0, $a_pc_id="")
 Constructor public.
 setStyleId ($a_styleid)
 Set Style Id.
 getStyleId ()
 Get Style Id.
 setEnableInternalLinks ($a_val)
 Set enable internal links.
 getEnableInternalLinks ()
 Get enable internal links.
 setEnableKeywords ($a_val)
 Set enable keywords handling.
 getEnableKeywords ()
 Get enable keywords handling.
 setEnableAnchors ($a_val)
 Set enable anchors.
 getEnableAnchors ()
 Get enable anchors.
 getStyle ()
 Get style object.
 setCharacteristics ($a_chars)
 Set Characteristics.
 getCharacteristics ()
 Get characteristics.
 getHierId ()
 get hierarchical id in dom object
 setHierId ($a_hier_id)
 get hierarchical id in dom object
 getBBMenu ($a_ta_name="par_content")
 Get the bb menu incl.
 delete ()
 delete content element
 moveAfter ()
 move content element after another element
 moveBefore ()
 move content element before another element
 splitPage ()
 split page to new page at specified position
 splitPageNext ()
 split page to next page at specified position
 displayValidationError ()
 display validation errors
 cancelCreate ()
 cancel creating page content
 cancelUpdate ()
 cancel update
 cancel ()
 Cancel.
 deactivate ()
 gui function set enabled if is not enabled and vice versa
 cut ()
 Cut single element.
 copy ()
 Copy single element.
 getTemplateOptions ($a_type)
 Get table templates.

Additional Inherited Members

- Static Public Member Functions inherited from ilPageContentGUI
static _getCommonBBButtons ()
 Get common bb buttons.
- Data Fields inherited from ilPageContentGUI
 $content_obj
 $ilias
 $tpl
 $lng
 $ctrl
 $pg_obj
 $hier_id
 $dom
 $updated
 $target_script
 $return_location
- Protected Member Functions inherited from ilPageContentGUI
 getCharacteristicsOfCurrentStyle ($a_type)
 Get characteristics of current style.
- Static Protected Attributes inherited from ilPageContentGUI
static $common_bb_buttons

Detailed Description

Class ilLoginPageElementGUI.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

ilPCLoginPageElementGUI:

Definition at line 18 of file class.ilPCLoginPageElementGUI.php.

Member Function Documentation

ilPCLoginPageElementGUI::create ( )

Create new Login Page Element.

Definition at line 145 of file class.ilPCLoginPageElementGUI.php.

References $_POST, and insert().

{
$this->content_obj = new ilPCLoginPageElements($this->dom);
$this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
$this->content_obj->setLoginPageElementType($_POST["type"]);
$this->content_obj->setAlignment($_POST['horizontal_align']);
$this->updated = $this->pg_obj->update();
if ($this->updated === true)
{
$this->ctrl->returnToParent($this, "jump".$this->hier_id);
}
else
{
$this->insert();
}
}

+ Here is the call graph for this function:

ilPCLoginPageElementGUI::edit (   $a_insert = false)

Edit resources form.

Definition at line 75 of file class.ilPCLoginPageElementGUI.php.

References $ilCtrl, ilPageContentGUI\$lng, $ret, ilPageContentGUI\$tpl, ilPageContentGUI\displayValidationError(), ilPCLoginPageElements\getAllTypes(), ilSelectInputGUI\setOptions(), and ilRadioOption\setValue().

Referenced by insert(), and update().

{
global $ilCtrl, $tpl, $lng, $objDefinition;
// edit form
include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
$form = new ilPropertyFormGUI();
$form->setFormAction($ilCtrl->getFormAction($this));
if ($a_insert)
{
$form->setTitle($this->lng->txt("cont_insert_login_page"));
}
else
{
$form->setTitle($this->lng->txt("cont_update_login_page"));
}
// type selection
$type_prop = new ilRadioGroupInputGUI($this->lng->txt("cont_type"),"type");
foreach(ilPCLoginPageElements::getAllTypes() as $index => $lang_key)
{
$types[$index] = $this->lng->txt('cont_lpe_'.$lang_key);
$option = new ilRadioOption($this->lng->txt('cont_lpe_'.$lang_key), $index);
$type_prop->addOption($option);
}
$selected = $a_insert
? ""
: $this->content_obj->getLoginPageElementType();
$type_prop->setValue($selected);
$form->addItem($type_prop);
// horizonal align
$align_prop = new ilSelectInputGUI($this->lng->txt("cont_align"),"horizontal_align");
$options = array(
"Left" => $lng->txt("cont_left"),
"Center" => $lng->txt("cont_center"),
"Right" => $lng->txt("cont_right"));
# "LeftFloat" => $lng->txt("cont_left_float"),
# "RightFloat" => $lng->txt("cont_right_float"));
$align_prop->setOptions($options);
$align_prop->setValue($this->content_obj->getAlignment());
$form->addItem($align_prop);
// save/cancel buttons
if ($a_insert)
{
$form->addCommandButton("create_login_page_element", $lng->txt("save"));
$form->addCommandButton("cancelCreate", $lng->txt("cancel"));
}
else
{
$form->addCommandButton("update_login_page_element", $lng->txt("save"));
$form->addCommandButton("cancelUpdate", $lng->txt("cancel"));
}
$html = $form->getHTML();
$tpl->setContent($html);
return $ret;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCLoginPageElementGUI::executeCommand ( )

execute command

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

References $cmd, and $ret.

{
// get next class that processes or forwards current command
$next_class = $this->ctrl->getNextClass($this);
// get current command
$cmd = $this->ctrl->getCmd();
switch($next_class)
{
default:
$ret =& $this->$cmd();
break;
}
return $ret;
}
ilPCLoginPageElementGUI::getLoginPageElements ( )

Get login page elements.

Returns
ilPCLoginPageElements $lp_elements

Definition at line 38 of file class.ilPCLoginPageElementGUI.php.

{
return $this->lp_elements;
}
ilPCLoginPageElementGUI::ilPCLoginPageElementGUI ( $a_pg_obj,
$a_content_obj,
  $a_hier_id,
  $a_pc_id = "" 
)

Constructor public.

Definition at line 24 of file class.ilPCLoginPageElementGUI.php.

References ilPageContentGUI\ilPageContentGUI().

{
parent::ilPageContentGUI($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
if(!is_object($this->content_obj))
{
$this->content_obj = new ilPCLoginPageElements(null);
}
}

+ Here is the call graph for this function:

ilPCLoginPageElementGUI::insert ( )

Insert new resources component form.

Definition at line 67 of file class.ilPCLoginPageElementGUI.php.

References edit().

Referenced by create().

{
$this->edit(true);
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPCLoginPageElementGUI::update ( )

Update Login page element.

Definition at line 166 of file class.ilPCLoginPageElementGUI.php.

References $_POST, and edit().

{
$this->content_obj->setLoginPageElementType($_POST["type"]);
$this->content_obj->setAlignment($_POST['horizontal_align']);
$this->updated = $this->pg_obj->update();
if ($this->updated === true)
{
$this->ctrl->returnToParent($this, "jump".$this->hier_id);
}
else
{
$this->pg_obj->addHierIDs();
$this->edit();
}
}

+ Here is the call graph for this function:


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