Changeset 874 for trunk/Application


Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
Location:
trunk/Application
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/DefaultConfig.php

    r873 r874  
    66  {
    77    $IsDeveloper = in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1'));
    8     return (array
     8    return array
    99    (
    1010        array('Name' => 'SystemPassword', 'Type' => 'PasswordEncoded', 'Default' => '', 'Title' => 'Systémové heslo'),
     
    5353        array('Name' => 'MainRouter/ConnectTimeout', 'Type' => 'Integer', 'Default' => '5', 'Title' => 'Vypršení času'),
    5454        array('Name' => 'MainRouter/MangleRuleSubgroupMinPrefix', 'Type' => 'Integer', 'Default' => '28', 'Title' => 'Nejmenší prefix podsítě pro mangle pravidla'),
    55     ));
     55    );
    5656  }
    5757}
  • trunk/Application/System.php

    r873 r874  
    7575      {
    7676        array_shift($PathItems);
    77         return ($this->SearchPage($PathItems, $Pages[$PathItem]));
    78       } else return ($Pages[$PathItem]);
    79     } else return ('');
     77        return $this->SearchPage($PathItems, $Pages[$PathItem]);
     78      } else return $Pages[$PathItem];
     79    } else return '';
    8080  }
    8181
    8282  function PageNotFound()
    8383  {
    84     return ('Page '.implode('/', $this->PathItems).' not found.');
     84    return 'Page '.implode('/', $this->PathItems).' not found.';
    8585  }
    8686
     
    102102  function ModulePresent($Name)
    103103  {
    104     return (array_key_exists($Name, $this->Modules));
     104    return array_key_exists($Name, $this->Modules);
    105105  }
    106106
     
    112112  function HumanDate($Time)
    113113  {
    114     return (date('j.n.Y', $Time));
     114    return date('j.n.Y', $Time);
    115115  }
    116116
    117117  function Link($Target)
    118118  {
    119     return ($this->RootURLFolder.$Target);
     119    return $this->RootURLFolder.$Target;
    120120  }
    121121
     
    135135        '" width="16" height="16" /> <a href="'.$Action['URL'].'">'.$Action['Title'].'</a>';
    136136    }
    137     return ($Output);
     137    return $Output;
    138138  }
    139139
     
    282282  {
    283283    Header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
    284     return ('<h3 align="center">Požadovaná stránka neexistuje.</h3>');
     284    return '<h3 align="center">Požadovaná stránka neexistuje.</h3>';
    285285  }
    286286}
  • trunk/Application/UpdateTrace.php

    r873 r874  
    21152115  function Get()
    21162116  {
    2117     return (array(
     2117    return array(
    21182118      491 => array('Revision' => 493, 'Function' => 'UpdateTo493'),
    21192119      493 => array('Revision' => 494, 'Function' => 'UpdateTo494'),
     
    22112211      867 => array('Revision' => 869, 'Function' => 'UpdateTo869'),
    22122212      869 => array('Revision' => 870, 'Function' => 'UpdateTo870'),
    2213     ));
     2213    );
    22142214  }
    22152215}
  • trunk/Application/View.php

    r873 r874  
    3838  function SystemMessage($Title, $Text)
    3939  {
    40     return ('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>');
     40    return '<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>';
    4141    //ShowFooter();
    4242    //die();
     
    6868    }
    6969    $Output = substr($Output, 6);
    70     return ($Output);
     70    return $Output;
    7171  }
    7272
     
    106106      $Output .= '</div></div>';
    107107    }
    108     return ($Output);
     108    return $Output;
    109109  }
    110110
     
    125125    }
    126126    $Output .= '</body></html>';
    127     return ($Output);
     127    return $Output;
    128128  }
    129129
     
    138138      if ($this->FormatHTML == true) $Output = $this->FormatOutput($Output);
    139139    }
    140     return ($Output);
     140    return $Output;
    141141  }
    142142
     
    147147    $Page->Database = $this->Database;
    148148    $Page->FormatHTML = $this->FormatHTML;
    149     return ($Page);
     149    return $Page;
    150150  }
    151151
     
    186186      $nn = $n;
    187187    }
    188     return ($out);
     188    return $out;
    189189  }
    190190}
Note: See TracChangeset for help on using the changeset viewer.