A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
881 B

<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
use Phacil\Framework\Controller;
/** @package */
class ControllerCommonHome extends Controller {
/**
* @return void
* @throws TypeError
* @throws Mustache_Exception_UnknownTemplateException
* @throws SmartyException
* @throws Exception
*/
public function index() {
var_dump('oi');
$this->document->setTitle("Hello World! %s");
$this->load->model('common/teste');
var_dump(get_class_methods($this->model_common_teste));
var_dump($this->model_common_teste->oi());
$this->load->helper('common/Data');
$help = new TestOfHelp;
var_dump($help->helpme());
$this->data['variable'] = "Hello World!";
$this->out();
}
}