* @license http://www.contenido.org/license/LIZENZ.txt * @link http://www.4fb.de * @link http://www.contenido.org * @since file available since contenido release <= 4.6 * * {@internal * created unknown * modified 2008-06-30, Dominik Ziegler, add security fix * * $Id$: * }} * */ if(!defined('CON_FRAMEWORK')) { die('Illegal call'); } class Art { /** * Constructor Function * @param */ function __construct() { // empty } // end function /** * getArtName() * Returns a name for the given article * @return string Returns the name of the given article */ function getArtName($article, $idlang) { global $cfg; $db = new DB_ConLite; $idlang = Contenido_Security::toInteger($idlang); $article = Contenido_Security::toInteger($article); $sql = "SELECT title FROM ". $cfg["tab"]["art_lang"] ." WHERE idlang = '".$idlang."' AND idart = '".$article."'"; $db->query($sql); $db->next_record(); return ($db->f("title")); } // end function /** * getArtIDForCatArt() * Returns a name for the given article * @return string Returns the name of the given article * */ function getArtIDForCatArt ( $idcatart) { global $cfg; $db = new DB_ConLite; $idcatart = Contenido_Security::toInteger($idcatart); $sql = "SELECT idart FROM ". $cfg["tab"]["cat_art"] ." WHERE idcatart = '".$idcatart."'"; $db->query($sql); $db->next_record(); return ($db->f("idart")); } // End function } // end class ?>