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/Table.php

    r42 r47  
    1414  var $TotalRowCount;
    1515  var $RowPerPage = 20;
    16  
     16
    1717  function __construct($System, $FormClass)
    1818  {
    1919    $this->System = $System;
    20     $this->Definition = $FormClass;   
     20    $this->Definition = $FormClass;
    2121    $this->QueryParameters = array();
    2222  }
    23  
     23
    2424  function CheckOrder()
    2525  {
     
    3333    {
    3434      if(array_key_exists('DefaultOrderColumn', $this->Definition)) $_GET['Column'] = $this->Definition['DefaultOrderColumn'];
    35       else 
     35      else
    3636      {
    3737        $Keys = array_keys($this->Definition['Items']);
     
    6464    $Output .= '<div class="Pager">'.$this->PageList('Page', $this->Page, $this->TotalRowCount, $this->RowPerPage).'</div>';
    6565    return($Output);
    66   } 
    67  
     66  }
     67
    6868  function LoadValuesFromDatabase($Database)
    69   {   
     69  {
    7070    $this->CheckOrder();
    7171    $OrderType = array('ASC', 'DESC');
     
    103103      $this->Values[] = $Row;
    104104    }
    105   } 
     105  }
    106106}
    107 
    108 ?>
Note: See TracChangeset for help on using the changeset viewer.