ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilFeedUrlInputGUI Class Reference

This class represents a feed url property in a property form. More...

+ Inheritance diagram for ilFeedUrlInputGUI:
+ Collaboration diagram for ilFeedUrlInputGUI:

Public Member Functions

 __construct ($a_title="", $a_postvar="")
 Constructor.
 checkInput ()
 Check input, strip slashes etc.
- Public Member Functions inherited from ilTextInputGUI
 setValue ($a_value)
 Set Value.
 getValue ()
 Get Value.
 setValidationFailureMessage ($a_msg)
 Set message string for validation failure.
 getValidationFailureMessage ()
 setValidationRegexp ($a_value)
 Set validation regexp.
 getValidationRegexp ()
 Get validation regexp.
 setMaxLength ($a_maxlength)
 Set Max Length.
 getMaxLength ()
 Get Max Length.
 setSize ($a_size)
 Set Size.
 setInlineStyle ($a_style)
 Set inline style.
 getInlineStyle ()
 Get inline style.
 setValueByArray ($a_values)
 Set value by array.
 getSize ()
 Get Size.
 setSuffix ($a_value)
 Set suffix.
 getSuffix ()
 Get suffix.
 setInputType ($a_type)
 set input type
 getInputType ()
 get input type
 setSubmitFormOnEnter ($a_val)
 Set submit form on enter.
 getSubmitFormOnEnter ()
 Get submit form on enter.
 getDataSource ()
 get datasource link for YUI autocomplete
 setDataSource ($href)
 set datasource link for YUI autocomplete
 getDataSourceSchema ()
 get datasource schema for YUI autocomplete
 setDataSourceSchema ($ds)
 set datasource schema for YUI autocomplete
 getDataSourceResultFormat ()
 get data result format callback for YUI autocomplete
 setDataSourceResultFormat ($callback)
 set data result format callback for YUI autocomplete
 setDataSourceDelimiter ($ar)
 set data delimiter array
 getDataSourceDelimiter ()
 get data delimiter array
 insert (&$a_tpl)
 Insert property html.
 getTableFilterHTML ()
 Get HTML for table filter.
 getToolbarHTML ()
 Get HTML for toolbar.
- Public Member Functions inherited from ilSubEnabledFormPropertyGUI
 addSubItem ($a_item)
 Add Subitem.
 getSubItems ()
 Get Subitems.
 checkSubItemsInput ()
 Check SubItems.
 getSubForm ()
 Get sub form html.
 getItemByPostVar ($a_post_var)
 Get item by post var.
- Public Member Functions inherited from ilFormPropertyGUI
executeCommand ()
 Execute command.
 getType ()
 Get Type.
 setTitle ($a_title)
 Set Title.
 getTitle ()
 Get Title.
 setPostVar ($a_postvar)
 Set Post Variable.
 getPostVar ()
 Get Post Variable.
 getFieldId ()
 Get Post Variable.
 setInfo ($a_info)
 Set Information Text.
 getInfo ()
 Get Information Text.
 setAlert ($a_alert)
 Set Alert Text.
 getAlert ()
 Get Alert Text.
 setRequired ($a_required)
 Set Required.
 getRequired ()
 Get Required.
 setDisabled ($a_disabled)
 Set Disabled.
 getDisabled ()
 Get Disabled.
 setParentForm ($a_parentform)
 Set Parent Form.
 getParentForm ()
 Get Parent Form.
 setParent ($a_val)
 Set Parent GUI object.
 getParent ()
 Get Parent GUI object.
 hideSubForm ()
 Sub form hidden on init?
 setHiddenTitle ($a_val)
 Set hidden title (for screenreaders)
 getHiddenTitle ()
 Get hidden title.
 serializeData ()
 serialize data
 unserializeData ($a_data)
 unserialize data
 writeToSession ()
 Write to session.
 clearFromSession ()
 Clear session value.
 readFromSession ()
 Read from session.
 getHiddenTag ($a_post_var, $a_value)
 Get hidden tag (used for disabled properties)

Protected Attributes

 $value
 $maxlength = 200
 $size = 40
- Protected Attributes inherited from ilTextInputGUI
 $value
 $maxlength = 200
 $size = 40
 $validationRegexp
 $validationFailureMessage = ''
 $suffix
 $style_css
 $yui_dataSource
 $yui_dataSchema
 $yui_formatCallback
 $yui_delimiterarray = array()
 $submit_form_on_enter = false
- Protected Attributes inherited from ilSubEnabledFormPropertyGUI
 $sub_items = array()
- Protected Attributes inherited from ilFormPropertyGUI
 $type
 $title
 $postvar
 $info
 $alert
 $required = false
 $parentgui
 $parentform

Additional Inherited Members

- Protected Member Functions inherited from ilTextInputGUI
 render ($a_mode="")
 Render item.

Detailed Description

This class represents a feed url property in a property form.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 31 of file class.ilFeedUrlInputGUI.php.

Constructor & Destructor Documentation

ilFeedUrlInputGUI::__construct (   $a_title = "",
  $a_postvar = "" 
)

Constructor.

Parameters
string$a_titleTitle
string$a_postvarPost Variable

Reimplemented from ilTextInputGUI.

Definition at line 43 of file class.ilFeedUrlInputGUI.php.

References ilFormPropertyGUI\setType().

{
parent::__construct($a_title, $a_postvar);
$this->setType("feedurl");
}

+ Here is the call graph for this function:

Member Function Documentation

ilFeedUrlInputGUI::checkInput ( )

Check input, strip slashes etc.

set alert, if input is not ok.

Returns
boolean Input ok, true/false

Reimplemented from ilTextInputGUI.

Definition at line 54 of file class.ilFeedUrlInputGUI.php.

References $_POST, $lng, ilExternalFeed\_checkUrl(), ilExternalFeed\_determineFeedUrl(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), ilFormPropertyGUI\setAlert(), and ilUtil\stripSlashes().

{
global $lng;
$lng->loadLanguageModule("feed");
$_POST[$this->getPostVar()] =
// remove safari pseudo protocol
if (substr($_POST[$this->getPostVar()], 0, 5) == "feed:")
{
$_POST[$this->getPostVar()] = "http:".
substr($_POST[$this->getPostVar()], 5);
}
// add missing http://
if (!is_int(strpos($_POST[$this->getPostVar()], "://")))
{
$_POST[$this->getPostVar()] = "http://".$_POST[$this->getPostVar()];
}
// check required
if ($this->getRequired() && trim($_POST[$this->getPostVar()]) == "")
{
$this->setAlert($lng->txt("msg_input_is_required"));
return false;
}
// check feed url
$url = $_POST[$this->getPostVar()];
include_once("./Services/Feeds/classes/class.ilExternalFeed.php");
$check = ilExternalFeed::_checkUrl($url);
// try to determine a feed url, if we failed here
if ($check !== true)
{
$check2 = ilExternalFeed::_checkUrl($url2);
if ($check2 === true)
{
$_POST[$this->getPostVar()] = $url2;
$check = true;
}
}
// if check failed, output error message
if ($check !== true)
{
$check = str_replace("MagpieRSS:", "", $check);
$this->setAlert($lng->txt("feed_no_valid_url")."<br />".$check);
return false;
}
return true;
}

+ Here is the call graph for this function:

Field Documentation

ilFeedUrlInputGUI::$maxlength = 200
protected

Definition at line 34 of file class.ilFeedUrlInputGUI.php.

ilFeedUrlInputGUI::$size = 40
protected

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

ilFeedUrlInputGUI::$value
protected

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


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