diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-11 00:55:42 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-11 00:55:42 +0000 | 
| commit | 51138d1c41d9be15d64d42bd25a46758d360ae4e (patch) | |
| tree | cb7ad9c2d70f47e1769ad81d6a7aa8507d144df5 /h-source/Application/Include/languages.php | |
| parent | 1df7d5d81c9c60029dfd6291e95f67b466673edc (diff) | |
improved actions history
Diffstat (limited to 'h-source/Application/Include/languages.php')
| -rw-r--r-- | h-source/Application/Include/languages.php | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php index 0e0959a..40014b0 100644 --- a/h-source/Application/Include/languages.php +++ b/h-source/Application/Include/languages.php @@ -167,6 +167,12 @@ class Lang  				"Download the xml file of all the <b>webcams</b> in the database"	=>	"Scarica il file xml di tutte le <b>webcams</b> presenti nel database",  				"You can download all the h-node database in one unique xml file in order to parse its contents by means of some proper script (for example a Python or Perl or PHP script)"	=>	"Puoi scaricare l'intero database di h-node in un unico file xml per analizzarne i contenuti utilizzando uno script appropriato (ad esempio uno script Python o Perl o PHP)",  				"Download the h-node hardware database in xml format"	=>	"Scarica il database dell'hardware di h-node in formato xml", +				"Database modifications"	=>	"Modifiche al database", +				"List of the database modifications carried out by users"	=>	"Lista delle modifiche apportate al database dagli utenti", +				"the model"	=>	"il modello", +				"has been inserted by" =>	"è stato inserito da", +				"has been updated by" =>	"è stato modificato da", +				"at"	=>	"alle ore",  			),  		'es'	=>	array  			( @@ -460,6 +466,14 @@ class Go  	{  		return "http://".DOMAIN_NAME."/".Hardware::getControllerFromType($type)."/insert/".Lang::$current;  	} + +	//go to the page of one device from the id of that device +	public static function toHardwarePage($idHard = 0) +	{ +		$clean['idHard'] = (int)$idHard; +		$urls = getUrlsFromIdHard($clean['idHard']); +		return $urls['urlView']; +	}  }  class MyStrings  | 
