* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt} */ class Breadcrumb { var /** * Eleresi utat tartalmazo tomb. */ $path; /** * Constructor * * @access public * @return void */ function Breadcrumb() { $this->path = array(); } /** * add - Uj szint hozzaadasa a kontenerhez * * @param mixed $title * @param mixed $link * @access public * @return void */ function add($title, $link) { $this->path[] = array('title' => $title, 'link' => $link); } /** * getArray - visszaadja a tarolt tombot smarty reszere * * @access public * @return array */ function getArray() { return $this->path; } } ?>
Fatal error: Class 'Breadcrumb' not found in /www/www.tradearabia.hu/admin.php on line 7