Thursday, November 8, 2012

j25: joomla function

JRequest::getVar()
$address = JRequest::getVar('address');  -data only 
$address = JRequest::getVar('address', 'Address is empty'); -default param
$address = JRequest::getVar('address', 'default value goes here', 'post'); - source param
 
$address = JRequest::getVar('address', 'default value goes here', 'post','validation type',mask type);
 
validation type (INT,INTEGER,FLOAT,DOUBLE,BOOL,BOOLEAN,WORD,ALNUM,CMD,BASE64,STRING,ARRAY,PATH,USERNAME)
mask type :
 - JREQUEST_NOTRIM - prevents trimming of whitespace
 - JREQUEST_ALLOWRAW - bypasses filtering
 - JREQUEST_ALLOWHTML - allows most HTML. If this is not passed in, HTML is stripped out by default.
 
JRequest::get( 'post' )
To receive a whole array filtered. If you would want to get the POST data 

j25 : Template

Section 1:
_JEXEC is a variable defined in Joomla's main index.php file. When you check if the variable has been defined yet, you can learn whether a file is being accessed directly or is being included as it should.
Section 2:
The $showRightColumn variable has a 1 or 0 value. If there are no modules being loaded in the right column, it has a value of 0, or false. Likewise, if modules are being loaded, it has a value of 1, or true.
Section 3:
The $this-countModules() function returns the total number of active modules for the given position. In this tutorial, we'll show you how it works.
Section 4:
When using $this-params-get() in a Joomla 2.5 template file, you can call the value of a parameter set by the user for the template. For example, if your template allows the user to enter the background color of the template, using $this-params-get you can grab the color the user entered.
Section 5:
While JFactory::getApplication() can be used in many different ways, it appears it is only used in the Beez2 template to get the value of the site's title and description (which are Advanced Options) for the template.
Section 6:
In the Beez2 template, JFactory::getDocument is called in order to tell Joomla to include an additional javascript file in the page.
Section 7:
The $this variable is used quite often in the Beez2 Joomla 2.5 template, and it references the JDocumentHTML Object.
Section 8:
In this tutorial, we'll show you how to use the $this-baseurl variable within a Joomla template to reference your site's URL.
Section 9:
$this-template in a Joomla 2.5 template can be used to get the folder name of the current template, which is helpful for dynamically creating URLs to css and other files.
Section 10:
The $this-language variable in Joomla 2.5 can be used to reference the current language being used, such as en-gb or es-es.
Section 11:
$this-direction in a Joomla 2.5 template gives you access to the direction text has been set to (for example ltr - left to right).
Section 12:
In the following Joomla 2.5 template tutorial, we'll show you how to add a new position to your template.
Section 13:
$files = JHtml::_(stylesheet) is used in our Joomla 2.5 template's index.php file as a method of loading a css file, general.css