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/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 ?>
Note: See TracChangeset for help on using the changeset viewer.