26 lines
349 B
PHP
26 lines
349 B
PHP
<?php
|
|
|
|
namespace manager\view;
|
|
use \manager\View;
|
|
use \manager\sessionManager;
|
|
use \manager\Authentification;
|
|
use \manager\ManagerError;
|
|
|
|
class users{
|
|
|
|
public static function template(){
|
|
return "<span class='a'>@var1</span>";
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function aaa($params){
|
|
return View::replace(self::template(), $params);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|