Example #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');
Example #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');
Example #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');
Example #4
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 20.11.2015
 * Time: 18:25
 */
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('Apple', 'Notebooks', 'Apple');
$view->DoctypeView('Buy Macbook');
$view->headerView('apple-notebooks');
$view->GetUI('laptop', 'notebooks');
Example #5
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 29.10.2015
 * Time: 8:51
 */
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('Apple', 'Phones', 'Apple');
$view->DoctypeView('Buy Iphone');
$view->headerView('apple-phones');
$view->GetUI('phone', 'phones');
Example #6
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 20.11.2015
 * Time: 20:20
 */
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('Asus', 'Notebooks', 'Asus');
$view->DoctypeView('Buy Asus Laptop');
$view->headerView('asus-notebooks');
$view->GetUI('laptop', 'notebooks');
Example #7
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';
//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', 'Gadgets', 'Samsung');
$view->DoctypeView('Buy Galaxy Tab');
$view->headerView('samsung-gadgets');
$view->GetUI('device', 'gadgets');
Example #8
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 22.11.2015
 * Time: 0:12
 */
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('Gadgets', 'Gadgets', 'All');
$view->DoctypeView('Buy Device');
$view->headerView('gadgets');
$view->GetUI('device', 'gadgets');
Example #9
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 28.10.2015
 * Time: 18:57
 */
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('Phones', 'Phones', 'All');
$view->DoctypeView('Buy Phone');
$view->headerView('phones');
$view->GetUI('phone', 'phones');