Browse Source

init wibo base class

Piotr Labudda 4 years ago
parent
commit
68f169b891
2 changed files with 2 additions and 2 deletions
  1. 1 1
      auth-example.php
  2. 1 1
      theme/wibo.php

+ 1 - 1
auth-example.php

@@ -20,7 +20,7 @@
  * - EMAIL_IMAP_IMPORT_USERNAME // EMAIL_IMAP_IMPORT_USERNAME
  */
 
-class Theme_Auth_Base { // TODO: implements AuthBaseInterface {
+class Theme_Auth_Wibo { // TODO: implements AuthBaseInterface {
 
 	static function auth($login, $pass) { // @return User object or null
 		return null;

+ 1 - 1
theme/base.php → theme/wibo.php

@@ -2,7 +2,7 @@
 
 // TODO: file and class name must have the same name as project
 
-class Theme_base extends ThemeDefault {
+class Theme_wibo extends ThemeDefault {
 
 	// function head() { // TODO: echo 'html tag inside <head>'
 	// }