Example #1
0
    /**
     * Visszaadja az alapertelmezett rendszer beallitasokat.
     *
     * @return array
     */
    public static function getSystemValues()
    {
        $db = DbFactory::connect();
        $query = '
			SELECT
				*
			FROM
				system
		';
        return $db->query($query)->fetchRow();
    }