|
DeveloperGuide
Explains how to download and install the joomla prototype website.
Featured Table of Content 1.0 Prerequisites2.0 InstallationServer Installation
Download
Installing the Backup
3.0 Running Application
4.0 Joomla Developmentcom_UseCaseActivityThis component is divided in two parts, the back-end and the front-end. The back-end part is for the administrators while the front-end is for the regular users of the website. The files for the back-end part of the component is inside the components directory within the administrator folder. The front-end resides in the components folder in the root of the website. Back-end
admin.UseCaseActivity.html.phpCurrently contains editActivity() and showActivities() function. This file's main purpose is to display the html part of the back-end component. admin.UseCaseActivity.phpContains the methods and functions used by the previous file. Also contains a switch statement for adding, editing, and deleting an event. toolbar.UseCaseActivity.html.phpContains the toolbar class used by the component. Very easy to add more buttons. toolbar.UseCaseActivity.phpContains a switch statement that controls the function of the component page buttons. tables/UseCaseActivity.phpContains a class that extends JTable. Contains variables that's tied to the MySQL database table. Front-end
components.com_UseCaseActivity.phpContains viewReview() and showPublishedActivities() functions. This file is the main to grab the information from the database. components.com_UseCaseActivity.html.phpContains functions on how the information is posted on the web. |