Changeset 22374

Show
Ignore:
Timestamp:
10/30/08 18:15:27 (5 years ago)
Author:
gen
Message:
 
Location:
events/phpframework/akelos/trunk
Files:
44 added
8 modified

Legend:

Unmodified
Added
Removed
  • events/phpframework/akelos/trunk/app/controllers/user_controller.php

    r22366 r22374  
    33class UserController extends ApplicationController 
    44{ 
     5    public function home() 
     6    { 
     7        print_r($this); 
     8    } 
     9     
     10    public function show() 
     11    { 
     12        die('tinko'); 
     13    } 
    514} 
    6  
    7 ?> 
  • events/phpframework/akelos/trunk/app/installers/admin_plugin_installer.php

    r21289 r22374  
    1212          password_salt string(16) not null, 
    1313          last_login_at, 
     14          image string, 
     15          is_private, 
    1416          is_enabled bool default 1 
    1517        ');  
  • events/phpframework/akelos/trunk/app/locales/user/en.php

    r21289 r22374  
    3939$dictionary['%attribute_name %error'] = '%attribute_name %error'; 
    4040 
     41// 2008-10-30 15:18:21 
     42 
     43 
     44$dictionary['Title'] = 'Title'; 
     45$dictionary['Footer'] = 'Footer'; 
     46$dictionary['About Us'] = 'About Us'; 
     47$dictionary['Contact'] = 'Contact'; 
     48$dictionary['Blog'] = 'Blog'; 
     49$dictionary['Status'] = 'Status'; 
     50$dictionary['API'] = 'API'; 
     51$dictionary['Search'] = 'Search'; 
     52$dictionary['Help'] = 'Help'; 
     53$dictionary['Jobs'] = 'Jobs'; 
     54$dictionary['TOS'] = 'TOS'; 
     55$dictionary['Privacy'] = 'Privacy'; 
     56 
    4157 
    4258?> 
  • events/phpframework/akelos/trunk/app/locales/user/ja.php

    r21289 r22374  
    3939$dictionary['%attribute_name %error'] = '%attribute_name %error'; 
    4040 
     41// 2008-10-30 15:18:21 
     42 
     43 
     44$dictionary['Title'] = 'Title'; 
     45$dictionary['Footer'] = 'Footer'; 
     46$dictionary['About Us'] = 'About Us'; 
     47$dictionary['Contact'] = 'Contact'; 
     48$dictionary['Blog'] = 'Blog'; 
     49$dictionary['Status'] = 'Status'; 
     50$dictionary['API'] = 'API'; 
     51$dictionary['Search'] = 'Search'; 
     52$dictionary['Help'] = 'Help'; 
     53$dictionary['Jobs'] = 'Jobs'; 
     54$dictionary['TOS'] = 'TOS'; 
     55$dictionary['Privacy'] = 'Privacy'; 
     56 
    4157 
    4258?> 
  • events/phpframework/akelos/trunk/config/admin.yml

    r22365 r22374  
    1717      action: logout 
    1818    authentication_url: 
    19       controller: home 
    20       module: false  
     19      controller: user 
     20      action: home 
  • events/phpframework/akelos/trunk/config/cache/development/admin.php

    r22365 r22374  
    2828  'authentication_url' =>  
    2929  array ( 
    30     'controller' => 'dashboard', 
    31     'module' => 'admin', 
     30    'controller' => 'user', 
     31    'action' => 'home', 
    3232  ), 
    3333); 
  • events/phpframework/akelos/trunk/config/cache/production/admin.php

    r22365 r22374  
    2828  'authentication_url' =>  
    2929  array ( 
    30     'controller' => 'dashboard', 
    31     'module' => 'admin', 
     30    'controller' => 'user', 
     31    'action' => 'home', 
    3232  ), 
    3333); 
  • events/phpframework/akelos/trunk/config/cache/testing/admin.php

    r22365 r22374  
    2828  'authentication_url' =>  
    2929  array ( 
    30     'controller' => 'dashboard', 
    31     'module' => 'admin', 
     30    'controller' => 'user', 
     31    'action' => 'home', 
    3232  ), 
    3333);