Changeset 95 for trunk/www/Module


Ignore:
Timestamp:
Dec 21, 2014, 10:46:18 AM (10 years ago)
Author:
chronos
Message:
  • Upraveno: Soubory různých logických částí systému odděleny do aplikačních modulů.
Location:
trunk
Files:
20 added
1 edited
42 moved

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      .buildpath
      .project
      .settings
  • trunk/www/Module/Client/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Client.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class ClientController extends Controller
  • trunk/www/Module/Cluster/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Cluster.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class ClusterController extends Controller
  • trunk/www/Module/Debug/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Debug.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class DebugController extends Controller
  • trunk/www/Module/Emulator/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Emulator.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class EmulatorController extends Controller
  • trunk/www/Module/HomePage/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/HomePage.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class HomePageController extends Controller
  • trunk/www/Module/HomePage/View.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/View.php');
    4 include_once(dirname(__FILE__).'/../Model/Platform.php');
     4include_once(dirname(__FILE__).'/../Platform/Model.php');
    55
    66class HomePageView extends View
  • trunk/www/Module/News/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/News.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class NewsController extends Controller
  • trunk/www/Module/Realm/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Realm.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class RealmController extends Controller
  • trunk/www/Module/Server/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Server.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class ServerController extends Controller
  • trunk/www/Module/Task/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Task.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class TaskController extends Controller
  • trunk/www/Module/Update/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/Update.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class UpdateController extends Controller
  • trunk/www/Module/User/Controller.php

    r94 r95  
    22
    33include_once(dirname(__FILE__).'/../../Base/Controller.php');
    4 include_once(dirname(__FILE__).'/../View/Page.php');
    5 include_once(dirname(__FILE__).'/../View/User.php');
     4include_once(dirname(__FILE__).'/../../Application/View/Page.php');
     5include_once(dirname(__FILE__).'/View.php');
    66
    77class UserController extends Controller
  • trunk/www/Module/User/Model.php

    r94 r95  
    33include_once(dirname(__FILE__).'/../../Base/Model.php');
    44include_once(dirname(__FILE__).'/../../Base/Mail.php');
    5 include_once(dirname(__FILE__).'/Log.php');
     5include_once(dirname(__FILE__).'/../Log/Model.php');
    66
    77class User extends Model
Note: See TracChangeset for help on using the changeset viewer.