Ignore:
Timestamp:
Jul 26, 2006, 11:04:23 PM (18 years ago)
Author:
nikrou
Message:

svn merge -r1502:1503 (cosmetic change)
function names are case-insensitive but it's a good idea to call functions
as they appear in their declaration.
So all functions names that manipulate url like make_index_url()
are write with lowercase

Location:
branches/branch-1_6/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/include/functions_url.inc.php

    r1402 r1504  
    9393 * @return string
    9494 */
    95 function make_index_URL($params = array())
     95function make_index_url($params = array())
    9696{
    9797  global $conf;
     
    105105    $url .= '?';
    106106  }
    107   $url.= make_section_in_URL($params);
     107  $url.= make_section_in_url($params);
    108108  $url = add_well_known_params_in_url($url, $params);
    109109  return $url;
     
    114114 * and removes.
    115115 *
    116  * duplicate_index_URL(array('category' => 12), array('start')) will create
     116 * duplicate_index_url(array('category' => 12), array('start')) will create
    117117 * an index URL on the current section (categories), but on a redefined
    118118 * category and without the start URL parameter.
     
    122122 * @return string
    123123 */
    124 function duplicate_index_URL($redefined = array(), $removed = array())
    125 {
    126   return make_index_URL(
     124function duplicate_index_url($redefined = array(), $removed = array())
     125{
     126  return make_index_url(
    127127    params_for_duplication($redefined, $removed)
    128128    );
     
    167167/**
    168168 * create a picture URL with current page parameters, but with redefinitions
    169  * and removes. See duplicate_index_URL.
     169 * and removes. See duplicate_index_url.
    170170 *
    171171 * @param array redefined keys
     
    173173 * @return string
    174174 */
    175 function duplicate_picture_URL($redefined = array(), $removed = array())
    176 {
    177   return make_picture_URL(
     175function duplicate_picture_url($redefined = array(), $removed = array())
     176{
     177  return make_picture_url(
    178178    params_for_duplication($redefined, $removed)
    179179    );
     
    186186 * @return string
    187187 */
    188 function make_picture_URL($params)
     188function make_picture_url($params)
    189189{
    190190  global $conf;
    191191  if (!isset($params['image_id']))
    192192  {
    193     die('make_picture_URL: image_id is a required parameter');
     193    die('make_picture_url: image_id is a required parameter');
    194194  }
    195195
     
    227227      $url .= $params['image_id'];
    228228  }
    229   $url .= make_section_in_URL($params);
     229  $url .= make_section_in_url($params);
    230230  $url = add_well_known_params_in_url($url, $params);
    231231  return $url;
     
    267267 * @return string
    268268 */
    269 function make_section_in_URL($params)
     269function make_section_in_url($params)
    270270{
    271271  global $conf;
     
    324324      if (!isset($params['tags']) or count($params['tags']) == 0)
    325325      {
    326         die('make_section_in_URL: require at least one tag');
     326        die('make_section_in_url: require at least one tag');
    327327      }
    328328
     
    357357      if (!isset($params['search']))
    358358      {
    359         die('make_section_in_URL: require a search identifier');
     359        die('make_section_in_url: require a search identifier');
    360360      }
    361361
     
    368368      if (!isset($params['list']))
    369369      {
    370         die('make_section_in_URL: require a list of items');
     370        die('make_section_in_url: require a list of items');
    371371      }
    372372
  • branches/branch-1_6/include/menubar.inc.php

    r1435 r1504  
    66// +-----------------------------------------------------------------------+
    77// | branch        : BSF (Best So Far)
    8 // | file          : $Id:$
    9 // | last update   : $Date:$
    10 // | last modifier : $Author:$
    11 // | revision      : $Revision:$
     8// | file          : $Id$
     9// | last update   : $Date$
     10// | last modifier : $Author$
     11// | revision      : $Revision$
    1212// +-----------------------------------------------------------------------+
    1313// | This program is free software; you can redistribute it and/or modify  |
     
    4242    'MENU_CATEGORIES_CONTENT' => get_categories_menu(),
    4343    'F_IDENTIFY' => get_root_url().'identification.php',
    44     'U_HOME' => make_index_URL(),
     44    'U_HOME' => make_index_url(),
    4545    'U_REGISTER' => get_root_url().'register.php',
    4646    'U_LOST_PASSWORD' => get_root_url().'password.php',
    47     'U_LOGOUT' => add_url_params(make_index_URL(), array('act'=>'logout') ),
     47    'U_LOGOUT' => add_url_params(make_index_url(), array('act'=>'logout') ),
    4848    'U_ADMIN'=> get_root_url().'admin.php',
    4949    'U_PROFILE'=> get_root_url().'profile.php',
     
    100100      'tags.tag',
    101101      array(
    102         'URL_ADD' => make_index_URL(
     102        'URL_ADD' => make_index_url(
    103103          array(
    104104            'tags' => array_merge(
     
    114114          ),
    115115
    116         'URL' => make_index_URL(
     116        'URL' => make_index_url(
    117117          array(
    118118            'tags' => array(
     
    148148    'special_cat',
    149149    array(
    150       'URL' => make_index_URL(array('section' => 'favorites')),
     150      'URL' => make_index_url(array('section' => 'favorites')),
    151151      'TITLE' => $lang['favorite_cat_hint'],
    152152      'NAME' => $lang['favorite_cat']
     
    157157  'special_cat',
    158158  array(
    159     'URL' => make_index_URL(array('section' => 'most_visited')),
     159    'URL' => make_index_url(array('section' => 'most_visited')),
    160160    'TITLE' => $lang['most_visited_cat_hint'],
    161161    'NAME' => $lang['most_visited_cat']
     
    167167    'special_cat',
    168168    array(
    169       'URL' => make_index_URL(array('section' => 'best_rated')),
     169      'URL' => make_index_url(array('section' => 'best_rated')),
    170170      'TITLE' => $lang['best_rated_cat_hint'],
    171171      'NAME' => $lang['best_rated_cat']
     
    185185  'special_cat',
    186186  array(
    187     'URL' => make_index_URL(array('section' => 'recent_pics')),
     187    'URL' => make_index_url(array('section' => 'recent_pics')),
    188188    'TITLE' => $lang['recent_pics_cat_hint'],
    189189    'NAME' => $lang['recent_pics_cat']
     
    193193  'special_cat',
    194194  array(
    195     'URL' => make_index_URL(array('section' => 'recent_cats')),
     195    'URL' => make_index_url(array('section' => 'recent_cats')),
    196196    'TITLE' => $lang['recent_cats_cat_hint'],
    197197    'NAME' => $lang['recent_cats_cat']
     
    203203  array(
    204204    'URL' =>
    205       make_index_URL(
     205      make_index_url(
    206206        array(
    207207          'chronology_field' => ($conf['calendar_datefield']=='date_available'
  • branches/branch-1_6/include/picture_comment.inc.php

    r1094 r1504  
    136136
    137137  $page['navigation_bar'] = create_navigation_bar(
    138     duplicate_picture_URL(array(), array('start')),
     138    duplicate_picture_url(array(), array('start')),
    139139    $row['nb_comments'],
    140140    $page['start'],
Note: See TracChangeset for help on using the changeset viewer.