5e93141b28
- barra de loading funcional - criação de diretorios e arquivos apontados pela estrutura do módulo selecionado
26 linhas
513 B
PHP
26 linhas
513 B
PHP
<?php
|
|
class Modulo2 implements module_interface
|
|
{
|
|
private $knowledge;
|
|
private $structure;
|
|
|
|
public function structure()
|
|
{
|
|
return $this->structure;
|
|
}
|
|
|
|
public function neededFiles($d)
|
|
{
|
|
/*$ar= Array();
|
|
$ar[]= Array('js/jquery.js', 'restrict/scripts');
|
|
$ar[]= Array('js/jquery.ui.all.js', '');
|
|
return $this->neededFiles= $ar;*/
|
|
}
|
|
|
|
public function __construct($knowledge)
|
|
{
|
|
$this->structure= 'structure';
|
|
$this->knowledge= $knowledge;
|
|
}
|
|
}
|
|
?>
|