Ciao,
premetto che non sono certamente un esperto circa il php, ho delle conoscenze di base, sopratutto teoriche, tuttavia mi piacerebbe personalizzare questo modulo e dal momento che non so dove trovare la risposta alla mia domanda, eccomi qua:
<?php
/**
* @package Alberghi_minisearch
* @copyright Copyright (C) 2007 Xscratch
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
**/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
global $_CONFIG, $database, $my, $option;
include($mosConfig_absolute_path."/administrator/components/com_alberghi/config.alberghi.php");
$thumbnailpath = $mosConfig_live_site.$alb_paththumbs."/";
if (file_exists($mosConfig_absolute_path.'/components/com_alberghi/languages/'.$mosConfig_lang.'.php')) {
include_once($mosConfig_absolute_path.'/components/com_alberghi/languages/'.$mosConfig_lang.'.php');
} else {
include_once($mosConfig_absolute_path.'/components/com_alberghi/languages/english.php');
}
$nullDate = $database->getNullDate();
$id = intval( mosGetParam( $_REQUEST, 'id', 0 ) );
$Itemid = intval( mosGetParam( $_REQUEST, 'Itemid', 0));
// Get the ItemId for this module
$query_id = "SELECT id FROM #__menu WHERE link='index.php?option=com_alberghi' AND published='1'";
$database->setQuery($query_id);
$rows = $database->loadObjectList();
$Itemid = $rows[0]->id;
$searched_title = trim( strtolower( mosGetParam( $_POST, 'title', '' ) ) );
$searched_catid = trim( strtolower( mosGetParam( $_POST, 'catid', '' ) ) );
$searched_comune = trim( strtolower( mosGetParam( $_POST, 'comune', '' ) ) );
$searched_provincia = trim( strtolower( mosGetParam( $_POST, 'provincia', '' ) ) );
$searched_regione = trim( strtolower( mosGetParam( $_POST, 'regione', '' ) ) );
$searched_stars = trim( strtolower( mosGetParam( $_POST, 'stars', '' ) ) );
Rispetto a questa parte di codice, presumo che poi sia lo stesso anche con le parti restanti, se volessi cambiare la parola "comune" e sostituirla con "città" e la parola "stars" con "tariffe" a quali implicazioni andrei incontro?
1) à = à andrebbe sost. così dappertutto?
2) stars = tariffe
vi ringrazio anticipatamente per le risposte.
Wutangrob