@version $Id: IndexController.php 5711 2009-07-20 07:39:29Z xinghao $
Inheritance: extends BusinessController
Example #1
0
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
include_once "includes/sp-load.php";
include_once SP_CTRLPATH . "/index.ctrl.php";
include_once SP_CTRLPATH . "/directory.ctrl.php";
$controller = new IndexController();
$controller->view->menu = 'home';
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    switch ($_GET['sec']) {
        case "news":
            include_once SP_CTRLPATH . "/information.ctrl.php";
            $infoCtrler = new InformationController();
            $infoCtrler->showNews($_GET);
            break;
        default:
            $controller->index($_GET);
            break;
    }
} elseif ($_SERVER['REQUEST_METHOD'] == 'POST') {
    switch ($_POST['sec']) {
        default:
            $controller->index($_POST);
            break;
    }
}
Example #2
0
 function showAboutUs()
 {
     $sql = "select t.*,l.lang_name from translators t,languages l where t.lang_code=l.lang_code";
     $transList = $this->db->select($sql);
     $this->set('transList', $transList);
     include_once SP_CTRLPATH . "/information.ctrl.php";
     $infoCtrler = new InformationController();
     $this->set('sponsors', $infoCtrler->getSponsors());
     $this->render('settings/aboutus');
 }