Ignore:
Timestamp:
May 31, 2014, 1:07:01 AM (10 years ago)
Author:
chronos
Message:
  • Upraveno: Definice třídy Subject přesunuta do samostatného modulu Subject.
  • Přidáno: K Subjektům přidána definice Kontaktů a druhů kontaktů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Log/Log.php

    r608 r661  
    1313    $this->Dependencies = array('User');
    1414  }
    15  
     15
    1616  function DoInstall()
    1717  {
     
    2020  function DoUnInstall()
    2121  {
    22   } 
    23  
     22  }
     23
    2424  function DoStart()
    2525  {
     
    2828      'Table' => 'Log',
    2929      'DefaultSortColumn' => 'Time',
     30      'DefaultSortOrder' => 1,
    3031      'Items' => array(
    3132        'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => '', 'ReadOnly' => true),
     
    3738      ),
    3839    ));
    39    
     40
    4041  }
    41  
     42
    4243  function DoStop()
    4344  {
    4445  }
    45  
     46
    4647  function NewRecord($Module, $Operation, $Value = '')
    4748  {
    48     if(array_key_exists('User', $this->System->ModuleManager->Modules) and 
     49    if(array_key_exists('User', $this->System->ModuleManager->Modules) and
    4950      array_key_exists('Id', $this->System->User->User))
    5051      $UserId = $this->System->User->User['Id'];
     
    5253    if(array_key_exists('REMOTE_ADDR', $_SERVER)) $IPAddress = $_SERVER['REMOTE_ADDR'];
    5354      else $IPAddress = '';
    54     $this->Database->insert('Log', array('Time' => 'NOW()', 
    55       'User' => $UserId, 'Module' => $Module, 
     55    $this->Database->insert('Log', array('Time' => 'NOW()',
     56      'User' => $UserId, 'Module' => $Module,
    5657      'Operation' => $Operation, 'Value' => $Value, 'IPAddress' => $IPAddress));
    5758  }
Note: See TracChangeset for help on using the changeset viewer.