-
19 Jul
Adding a toolbar at backend of joomla component
This Joomla blog post will show you how to add toolbar at the backend of Joomla Component. Class Used for Toolbar : JToolBarHelper Class Location : “htdocs\administrator\includes\toolbar.php” . Setting Title of toolbar Function Used : title() of JToolBarHelper class. Function Prototype : public static function title($title, $icon = ‘generic.png’);
$title = title of the toolbar- Category :
- Joomla
- Joomla Component
-
16 Jul
Pagination in Joomla Component
This Joomla Component Tutorial will guide you how to use pagination in Joomla Component using only view part.Pagination Object can be created with calling the constructor of class JPagination (in libraries\joomla\html\pagination.php) like shown below. View Code PHP1 2 3 4 $this->_pagination = new JPagination($total, JRequest::getVar(’limitstart’), JRequest::getVar(’limit’) );
Where,
$this->_pagination=pagination object
$total = total number of records.- Category :
- Joomla
-
16 Jul
How to add a Read More link in Joomla Articles
By default when you create a new Joomla article for the front page or blog view and use the Read More option to split the article into two sections you will find the read more link includes the text ” Read More” rather than the title of your article.
This Read More option allows you to break up an article into smaller sections, which makes the articles much easier to display when you don’t have a lot of screen space to work with.
In this article, we’re going to show you how to add a Read More link…- Category :
- Joomla
-
09 Jul
How to use session in Joomla
Using Session In Joomla Session plays an important role in web application. Session storage is used to store the user data over certain period of time. Session information is destroyed when user is inactive for certain period of time. Session information is stored on web server using session identifier (session ID) generated when the first request (sometimes authenticated) from the end user running web browser is received.
- Category :
- Joomla
-
08 Jul
Adding variable request in helloworld or any joomla module
In this Joomla Module Tutorial you will find how to add variable request in module. Adding a variable request to a module is simple which is done by installation file .xml. We will replace some code in the xml file to add variable request in the Helloworld Module.
Creating Variable Request
In the .xml file we will add <config> tag to add variable request like shown below.- Category :
- Joomla
-
08 Jul
Change your joomla website default admin url
The Back-end of a Joomla! site is used to manage the content, appearance and functionality of the site. It is not seen by visitors to the ‘Front-end’ and you can only login to it if you have appropriate permissions. Joomla uses “Administrator ” name for its backend URL by default. It remains not much secure if we have already kept URL as by default .So For security reason we need to change joomla administrator folder. To protect your joomla website you need to rename your administrator folder or path.
Here is the steps to implement this.- Category :
- Joomla
-
02 Jul
MVC Framework
What Is MVC ? MVC is an architectural pattern used in software engineering. In complex computer applications that present lots of data to the user, one often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface do not impact the data handling, and that the data can be reorganized without changing the user interface. The model-view-controller solves this problem by decoupling data access and business logic from data presentation and user interaction, by introducing an intermediate component: the controller.
-
08 Feb
Promising Small Business Web Solutions Using Frameworks and CMS
As the days are passing for every business either small or large, importance of going online is increasing by leaps and bounce. Hence picking up the correct platform for your small business website is crucial as in coming future; it will enable you to ripe maximum out of your minimum efforts and investments.
-
03 Nov
Joomla! CMS Statistics – Yesterday and Today
Introduction To Joomla! Joomla is a pocket-friendly and risk-free piece of open source CMS with model–view–controller (MVC) and is continually enhanced and supported by hundreds and hundreds of committed programmers throughout the planet. Not merely for the beginners, but Joomla CMS development is right here with all the rewards to assist absolutely everyone who desires for finances favorable yet safe and appealing sites. It is really recommended as platform for open source customization to build almost everything varying for personalized blogs to sophisticated websites.
-
17 Oct
Joomla 3.0 Released To Power Joomla Web Design and Development
The ultimate solution to the need of highly secure, reliable and user-friendly website is released on 27th September 2012 by Joomla community with the tag name of Joomla 3.0. It will conclude with Joomla 3.5 LTS (long term support) releasing in September of 2013. Joomla 3.0 and the next STS version Joomla 3.1 both are designed keeping fresh adopters in mind.
- Category :
- Joomla