Changeset 47 for trunk/Base/HTML


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:
5 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 ?>
  • trunk/Base/HTML/HTML.php

    r42 r47  
    1616  {
    1717    $Indentation = 2;
    18    
     18
    1919    $Output = '';
    2020    $Indent = 0;
     
    3030      }
    3131      $Line = trim(substr($Text, $Start, $End + 1));
    32       if(strlen($Line) > 0) 
     32      if(strlen($Line) > 0)
    3333      if($Line[0] == '<')
    3434      {
    35         if($Text[$Start + 1] == '/') 
     35        if($Text[$Start + 1] == '/')
    3636        {
    3737          $IndentNew = $IndentNew - $Indentation;
    3838          $Indent = $IndentNew;
    39         } else 
     39        } else
    4040        {
    4141          if(strpos($Line, ' ')) $Command = substr($Line, 1, strpos($Line, ' ') - 1);
    4242          else $Command = substr($Line, 1, strlen($Line) - $Indentation);
    4343          if(strpos($Text, '</'.$Command.'>')) $IndentNew = $IndentNew + $Indentation;
    44         }   
     44        }
    4545      }
    4646      if($Line != '') $Output .= (str_repeat(' ', $Indent).$Line."\n");
     
    5959  function MakeLink($Title, $Target)
    6060  {
    61     return('<a href="'.$Target.'">'.$Title.'</a>'); 
     61    return('<a href="'.$Target.'">'.$Title.'</a>');
    6262  }
    6363
     
    8989  // Zobrazení číselný seznamu stránek
    9090  function PageList($QueryStringVar, $Page, $TotalCount, $CountPerPage, $Around = 10)
    91   { 
     91  {
    9292    $QueryStringArray = $this->System->HTTP->GetQueryStringArray();
    9393    $Count = ceil($TotalCount / $CountPerPage);
     
    9595    if($Count > 1)
    9696    {
    97       if($Page > 0) 
     97      if($Page > 0)
    9898      {
    9999        $QueryStringArray[$QueryStringVar] = 0;
     
    118118      }
    119119      if($PagesMax < ($Count - 1)) $Result .= ' .. ';
    120       if($Page < ($Count - 1)) 
     120      if($Page < ($Count - 1))
    121121      {
    122122        $QueryStringArray[$QueryStringVar] = $Page + 1;
     
    138138  }
    139139}
    140 
    141 ?>
  • 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 ?>
  • trunk/Base/HTML/XHTML.php

    r42 r47  
    3434  }
    3535}
    36 
    37 ?>
Note: See TracChangeset for help on using the changeset viewer.