Esempio n. 1
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 17.11.2015
 * Time: 22:40
 */
include_once '..\\..\\Controllers\\DefaultController.php';
include_once '..\\..\\Model\\DefaultModel.php';
include_once '..\\..\\View\\DefaultView.php';
//initiate the triad
$model = new DefaultModel();
//It is important that the controller and the view share the model
$controller = new DefaultController($model);
$view = new DefaultView($model);
$controller->actionGetData('Notebooks', 'Notebooks', 'All');
$view->DoctypeView('Buy Laptop');
$view->headerView('notebooks');
$view->GetUI('laptop', 'notebooks');
Esempio n. 2
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 22.11.2015
 * Time: 1:04
 */
include_once '..\\..\\Controllers\\DefaultController.php';
include_once '..\\..\\Model\\DefaultModel.php';
include_once '..\\..\\View\\DefaultView.php';
$model = new DefaultModel();
//It is important that the controller and the view share the model
$controller = new DefaultController($model);
$view = new DefaultView($model);
$controller->actionGetData('Apple', 'Gadgets', 'Apple');
$view->DoctypeView('Buy Ipad');
$view->headerView('apple-gadgets');
$view->GetUI('device', 'gadgets');
Esempio n. 3
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 03.11.2015
 * Time: 23:15
 */
include_once '..\\..\\Controllers\\DefaultController.php';
include_once '..\\..\\Model\\DefaultModel.php';
include_once '..\\..\\View\\DefaultView.php';
//initiate the triad
$model = new DefaultModel();
//It is important that the controller and the view share the model
$controller = new DefaultController($model);
$view = new DefaultView($model);
$controller->actionGetData('Samsung', 'Phones', 'Samsung');
$view->DoctypeView('Buy Samsung Phone');
$view->headerView('Samsung-phones');
$view->GetUI('phone', 'phones');