Joomla 2.5 Templates – $this->params->get(‘templatecolor’);

Joomla 2.5 has reached its end of life as for 12/31/2014. Please be advised this may be a security risk to your website. You can view more information about the end of life here.

Continuing with our review of the Beez2 template, the next set of code in the template’s index.php file we will look at is:

// get params
$color              = $this->params->get(‘templatecolor’);
$logo               = $this->params->get(‘logo’);
$navposition        = $this->params->get(‘navposition’);

Based upon the names used, it appears that $this->params->get will return the value of the given parameter for this template.

What are the current values of these template parameters?

If we log into our Joomla admin, we can view the values of these parameters by following these steps:

  1. Log into our Joomla dashboard
  2. In the top menu, hover over Extensions and then click Template Manager.
  3. Click Beez2 – Default
  4. In the right menu under Advanced Options, you will see the following values:
    beez2-advanced-options
    Advanced OptionValueForm Value
    Logoimages/joomla_black.gifimages/joomla_black.gif
    Position of Navigationbefore contentleft
    Template colourPersonalpersonal

    In the above table, Value is the value for the option the user has selected (what you can see in the screenshot), while Form Value is the value of the option in the HTML code (you’ll have to view the HTML source code to see this)

What value does $this->params->get return?

Now that we know that actual value of these template parameters, we can test what the function returns. We will do so with the following code:

<

p class=”code_block”>// get params
$color              = $this->params->get(‘templatecolor’);
$logo               = $this->params->get(‘logo’);
$navposition        = $this->params->get(‘navposition’);
echo ”  <pre>
                       this->params->get(‘templatecolor’) = ” . $this->params->get(‘templatecolor’) . “
                       this->params->get(‘logo’) = ” . $this->params->get(‘logo’) . “
                       this->params->get(‘navposition’) = ” . $this->params->get(‘navposition’) . “
        </pre>
“; die();

values-of-this-params-get

As you can see from the screenshot to the right, the value return by $this->params->get is the form value of each of the template’s parameters.

Was this article helpful? Join the conversation!

Server Madness Sale
Score Big with Savings up to 99% Off

X