mojo web some fixes
This commit is contained in:
parent
c478fc5463
commit
6cd2a5774c
BIN
mojotrollz/img/wowicons/logo.png
Normal file
BIN
mojotrollz/img/wowicons/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
mojotrollz/img/wowicons/logo.xcf
Normal file
BIN
mojotrollz/img/wowicons/logo.xcf
Normal file
Binary file not shown.
|
Before Width: | Height: | Size: 1006 KiB After Width: | Height: | Size: 1006 KiB |
@ -23,6 +23,9 @@ class page_mojotrollz extends \SYSTEM\API\api_default {
|
|||||||
public static function action_wizard_summ(){
|
public static function action_wizard_summ(){
|
||||||
return new wizard_summ();}
|
return new wizard_summ();}
|
||||||
|
|
||||||
|
public static function action_wizard_reg(){
|
||||||
|
return new wizard_reg();}
|
||||||
|
|
||||||
public static function action_user_news(){
|
public static function action_user_news(){
|
||||||
return new user_news();}
|
return new user_news();}
|
||||||
|
|
||||||
|
|||||||
@ -2,11 +2,11 @@
|
|||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__),'');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__),'');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/default_page','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/default_page','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_details','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_details','');
|
||||||
//SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_visuals','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_visuals','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_friend','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_friend','');
|
||||||
//SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_skills','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_skills','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_spawn','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_spawn','');
|
||||||
//SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_summ','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_summ','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_reg','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/wizard_reg','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/user_news','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/user_news','');
|
||||||
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/user_guild','');
|
SYSTEM\autoload::registerFolder(dirname(__FILE__).'/user_guild','');
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
|
|
||||||
<div id="details_gender" style="float: left; margin: 15px;">
|
<div id="details_gender" style="float: left; margin: 15px;">
|
||||||
<input type="text" class="form-control input-lg" id="charname" placeholder="${character_name}">
|
<input type="text" class="form-control input-lg" id="charname" placeholder="${character_name}"></br>
|
||||||
<br>
|
<a href="#" id="random"><img src="${WOWICONS}logo.png" width="220px"/></a></br>
|
||||||
<a href="#" id="random"><img src="${WOWICONS}logo.jpg" width="220px"/></a>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<a class="male fadein" href="#"><img src="${WOWICONS}male.png" width="110px"/></a>
|
<a class="male fadein" href="#"><img src="${WOWICONS}male.png" width="110px"/></a>
|
||||||
<a class="female fadein" href="#"><img src="${WOWICONS}female.png" width="110px"/></a>
|
<a class="female fadein" href="#"><img src="${WOWICONS}female.png" width="110px"/></a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
19
mojotrollz/page/wizard_skills/wizard_skills.php
Normal file
19
mojotrollz/page/wizard_skills/wizard_skills.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class wizard_skills extends SYSTEM\PAGE\Page {
|
||||||
|
|
||||||
|
private function js(){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
private function css (){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function html(){
|
||||||
|
$vars = array();
|
||||||
|
$vars['js'] = $this->js();
|
||||||
|
$vars['css'] = $this->css();
|
||||||
|
return 'not implemented';
|
||||||
|
}
|
||||||
|
}
|
||||||
19
mojotrollz/page/wizard_summ/wizard_summ.php
Normal file
19
mojotrollz/page/wizard_summ/wizard_summ.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class wizard_summ extends SYSTEM\PAGE\Page {
|
||||||
|
|
||||||
|
private function js(){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
private function css (){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function html(){
|
||||||
|
$vars = array();
|
||||||
|
$vars['js'] = $this->js();
|
||||||
|
$vars['css'] = $this->css();
|
||||||
|
return 'not implemented';
|
||||||
|
}
|
||||||
|
}
|
||||||
19
mojotrollz/page/wizard_visuals/wizard_visuals.php
Normal file
19
mojotrollz/page/wizard_visuals/wizard_visuals.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class wizard_visuals extends SYSTEM\PAGE\Page {
|
||||||
|
|
||||||
|
private function js(){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
private function css (){
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function html(){
|
||||||
|
$vars = array();
|
||||||
|
$vars['js'] = $this->js();
|
||||||
|
$vars['css'] = $this->css();
|
||||||
|
return 'not implemented';
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user