Ignore:
Timestamp:
Jul 27, 2014, 9:14:56 PM (10 years ago)
Author:
chronos
Message:
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 
        21config.php
         2.project
  • trunk/Base/HTML/Form.php

    r42 r47  
    88  var $Values = array();
    99  var $OnSubmit = '';
    10  
     10
    1111  function __construct($System, $FormClass)
    1212  {
     
    1616    {
    1717      $this->Values[$Index] = '';
    18     }   
     18    }
    1919  }
    2020
     
    3636      if($Item['Type'] != 'Hidden')
    3737      {
    38         if(!array_key_exists($Index, $this->Values) and isset($Item['Default'])) $this->Values[$Index] = $Item['Default']; 
     38        if(!array_key_exists($Index, $this->Values) and isset($Item['Default'])) $this->Values[$Index] = $Item['Default'];
    3939        $Edit = $this->System->Type->ExecuteTypeEvent($Item['Type'], 'OnView',
    4040          array('Name' => $Index, 'Value' => $this->Values[$Index], 'Type' => $Item['Type']));
     
    4343    }
    4444    $Output = '<div style="text-align: center">'.$this->Definition['Title'].'</div>'.$this->Table($Table, 'WideTable');
    45     return($Output); 
     45    return($Output);
    4646  }
    4747
     
    6262    foreach($this->Definition['Items'] as $Index => $Item)
    6363    {
    64       if($Item['Type'] != 'Hidden') 
     64      if($Item['Type'] != 'Hidden')
    6565      {
    66         if(!array_key_exists($Index, $this->Values) and isset($Item['Default'])) $this->Values[$Index] = $Item['Default']; 
     66        if(!array_key_exists($Index, $this->Values) and isset($Item['Default'])) $this->Values[$Index] = $Item['Default'];
    6767        $Edit = $this->System->Type->ExecuteTypeEvent($Item['Type'], 'OnEdit', array('Name' => $Index, 'Value' => $this->Values[$Index], 'Type' => $Item['Type']));
    6868        array_push($Table['Rows'], array($Item['Caption'].':', $Edit));
     
    7373    foreach($this->Definition['Items'] as $Index => $Item)
    7474      if($Item['Type'] == 'Hidden') $Output .= $this->System->Type->ExecuteTypeEvent($Item['Type'], 'OnEdit', array('Name' => $Index, 'Value' => $this->Values[$Index], 'Type' => $Item['Type']));
    75     return($Output); 
     75    return($Output);
    7676  }
    7777
     
    119119  }
    120120}
    121 
    122 ?>
Note: See TracChangeset for help on using the changeset viewer.