wikipoints/ground/controllers/IndexController.php

30 lines
693 B
PHP

<?php
class IndexController extends Controller
{
/**
* Действие по умолчанию - вывоим каталог товаров.
*/
static function actionIndex()
{
self::addScript('/js/jquery-2.1.0.min.js');
self::addScript('http://api-maps.yandex.ru/2.0-stable/?load=package.standard&lang=ru-RU&mode=release');
self::addScript('/js/main.js');
self::addStyle('/css/style.css');
$category = new Category();
self::render('indexTemplate.php', array(
'category' => $category->getAll(),
));
}
static function actionAddpoint()
{
$point = new Point();
$point->add($_POST);
App::redirect('/');
}
}