├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── multi_menu.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Test.php │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Multi_menu.php │ └── index.html ├── logs │ └── index.html ├── models │ ├── Menu_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── basic.php │ ├── bootstrap1.php │ ├── bootstrap2.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ ├── inject.php │ ├── test_view.php │ └── welcome_message.php ├── assets ├── css │ ├── bootstrap-submenu.css │ ├── bootstrap-submenu.css.map │ ├── bootstrap-submenu.min.css │ └── doc.min.css ├── img │ ├── ci_multilevel_menu_screenshoot.jpg │ ├── ci_multilevel_menu_screenshoot_2.jpg │ ├── ci_multilevel_menu_screenshoot_3.jpg │ └── other_test.png └── js │ ├── bootstrap-submenu.js │ ├── bootstrap-submenu.min.js │ └── docs.js ├── ci_multilevel_menu.sql ├── index.php ├── license.txt └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- 1 | 'ua'); 61 | */ 62 | 63 | $autoload['libraries'] = array('database'); 64 | 65 | 66 | /* 67 | | ------------------------------------------------------------------- 68 | | Auto-load Drivers 69 | | ------------------------------------------------------------------- 70 | | These classes are located in the system/libraries folder or in your 71 | | application/libraries folder within their own subdirectory. They 72 | | offer multiple interchangeable driver options. 73 | | 74 | | Prototype: 75 | | 76 | | $autoload['drivers'] = array('cache'); 77 | */ 78 | 79 | $autoload['drivers'] = array(); 80 | 81 | 82 | /* 83 | | ------------------------------------------------------------------- 84 | | Auto-load Helper Files 85 | | ------------------------------------------------------------------- 86 | | Prototype: 87 | | 88 | | $autoload['helper'] = array('url', 'file'); 89 | */ 90 | 91 | $autoload['helper'] = array('url'); 92 | 93 | 94 | /* 95 | | ------------------------------------------------------------------- 96 | | Auto-load Config files 97 | | ------------------------------------------------------------------- 98 | | Prototype: 99 | | 100 | | $autoload['config'] = array('config1', 'config2'); 101 | | 102 | | NOTE: This item is intended for use ONLY if you have created custom 103 | | config files. Otherwise, leave it blank. 104 | | 105 | */ 106 | 107 | $autoload['config'] = array(); 108 | 109 | 110 | /* 111 | | ------------------------------------------------------------------- 112 | | Auto-load Language files 113 | | ------------------------------------------------------------------- 114 | | Prototype: 115 | | 116 | | $autoload['language'] = array('lang1', 'lang2'); 117 | | 118 | | NOTE: Do not include the "_lang" part of your file. For example 119 | | "codeigniter_lang.php" would be referenced as array('codeigniter'); 120 | | 121 | */ 122 | 123 | $autoload['language'] = array(); 124 | 125 | 126 | /* 127 | | ------------------------------------------------------------------- 128 | | Auto-load Models 129 | | ------------------------------------------------------------------- 130 | | Prototype: 131 | | 132 | | $autoload['model'] = array('first_model', 'second_model'); 133 | | 134 | | You can also supply an alternative model name to be assigned 135 | | in the controller: 136 | | 137 | | $autoload['model'] = array('first_model' => 'first'); 138 | */ 139 | 140 | $autoload['model'] = array(); 141 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | db->last_query() and profiling of DB queries. 50 | | When you run a query, with this setting set to TRUE (default), 51 | | CodeIgniter will store the SQL statement for debugging purposes. 52 | | However, this may cause high memory usage, especially if you run 53 | | a lot of SQL queries ... disable this to avoid that problem. 54 | | 55 | | The $active_group variable lets you choose which connection group to 56 | | make active. By default there is only one group (the 'default' group). 57 | | 58 | | The $query_builder variables lets you determine whether or not to load 59 | | the query builder class. 60 | */ 61 | 62 | $active_group = 'default'; 63 | $query_builder = TRUE; 64 | 65 | $db['default'] = array( 66 | 'dsn' => '', 67 | 'hostname' => 'localhost', 68 | 'username' => 'root', 69 | 'password' => '063', 70 | 'database' => 'ci_multilevel_menu', 71 | 'dbdriver' => 'mysqli', 72 | 'dbprefix' => '', 73 | 'pconnect' => FALSE, 74 | 'db_debug' => TRUE, 75 | 'cache_on' => FALSE, 76 | 'cachedir' => '', 77 | 'char_set' => 'utf8', 78 | 'dbcollat' => 'utf8_general_ci', 79 | 'swap_pre' => '', 80 | 'encrypt' => FALSE, 81 | 'compress' => FALSE, 82 | 'stricton' => FALSE, 83 | 'failover' => array(), 84 | 'save_queries' => TRUE 85 | ); 86 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 6 | 'xhtml1-strict' => '', 7 | 'xhtml1-trans' => '', 8 | 'xhtml1-frame' => '', 9 | 'xhtml-basic11' => '', 10 | 'html5' => '', 11 | 'html4-strict' => '', 12 | 'html4-trans' => '', 13 | 'html4-frame' => '', 14 | 'mathml1' => '', 15 | 'mathml2' => '', 16 | 'svg10' => '', 17 | 'svg11' => '', 18 | 'svg11-basic' => '', 19 | 'svg11-tiny' => '', 20 | 'xhtml-math-svg-xh' => '', 21 | 'xhtml-math-svg-sh' => '', 22 | 'xhtml-rdfa-1' => '', 23 | 'xhtml-rdfa-2' => '' 24 | ); 25 | -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 14 | '/ö|œ/' => 'oe', 15 | '/ü/' => 'ue', 16 | '/Ä/' => 'Ae', 17 | '/Ü/' => 'Ue', 18 | '/Ö/' => 'Oe', 19 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', 20 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', 21 | '/Б/' => 'B', 22 | '/б/' => 'b', 23 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 24 | '/ç|ć|ĉ|ċ|č/' => 'c', 25 | '/Д/' => 'D', 26 | '/д/' => 'd', 27 | '/Ð|Ď|Đ|Δ/' => 'Dj', 28 | '/ð|ď|đ|δ/' => 'dj', 29 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', 30 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', 31 | '/Ф/' => 'F', 32 | '/ф/' => 'f', 33 | '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', 34 | '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', 35 | '/Ĥ|Ħ/' => 'H', 36 | '/ĥ|ħ/' => 'h', 37 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', 38 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', 39 | '/Ĵ/' => 'J', 40 | '/ĵ/' => 'j', 41 | '/Ķ|Κ|К/' => 'K', 42 | '/ķ|κ|к/' => 'k', 43 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', 44 | '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', 45 | '/М/' => 'M', 46 | '/м/' => 'm', 47 | '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', 48 | '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', 49 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', 50 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', 51 | '/П/' => 'P', 52 | '/п/' => 'p', 53 | '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', 54 | '/ŕ|ŗ|ř|ρ|р/' => 'r', 55 | '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', 56 | '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', 57 | '/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T', 58 | '/ț|ţ|ť|ŧ|т/' => 't', 59 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', 60 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', 61 | '/Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', 62 | '/ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', 63 | '/В/' => 'V', 64 | '/в/' => 'v', 65 | '/Ŵ/' => 'W', 66 | '/ŵ/' => 'w', 67 | '/Ź|Ż|Ž|Ζ|З/' => 'Z', 68 | '/ź|ż|ž|ζ|з/' => 'z', 69 | '/Æ|Ǽ/' => 'AE', 70 | '/ß/' => 'ss', 71 | '/IJ/' => 'IJ', 72 | '/ij/' => 'ij', 73 | '/Œ/' => 'OE', 74 | '/ƒ/' => 'f', 75 | '/ξ/' => 'ks', 76 | '/π/' => 'p', 77 | '/β/' => 'v', 78 | '/μ/' => 'm', 79 | '/ψ/' => 'ps', 80 | '/Ё/' => 'Yo', 81 | '/ё/' => 'yo', 82 | '/Є/' => 'Ye', 83 | '/є/' => 'ye', 84 | '/Ї/' => 'Yi', 85 | '/Ж/' => 'Zh', 86 | '/ж/' => 'zh', 87 | '/Х/' => 'Kh', 88 | '/х/' => 'kh', 89 | '/Ц/' => 'Ts', 90 | '/ц/' => 'ts', 91 | '/Ч/' => 'Ch', 92 | '/ч/' => 'ch', 93 | '/Ш/' => 'Sh', 94 | '/ш/' => 'sh', 95 | '/Щ/' => 'Shch', 96 | '/щ/' => 'shch', 97 | '/Ъ|ъ|Ь|ь/' => '', 98 | '/Ю/' => 'Yu', 99 | '/ю/' => 'yu', 100 | '/Я/' => 'Ya', 101 | '/я/' => 'ya' 102 | ); 103 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->current() this is the version that schema will 69 | | be upgraded / downgraded to. 70 | | 71 | */ 72 | $config['migration_version'] = 0; 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Migrations Path 77 | |-------------------------------------------------------------------------- 78 | | 79 | | Path to your migrations folder. 80 | | Typically, it will be within your application path. 81 | | Also, writing permission is required within the migrations path. 82 | | 83 | */ 84 | $config['migration_path'] = APPPATH.'migrations/'; 85 | -------------------------------------------------------------------------------- /application/config/multi_menu.php: -------------------------------------------------------------------------------- 1 | '; 11 | $config["nav_tag_close"] = ''; 12 | $config["item_tag_open"] = '
  • '; 13 | $config["item_tag_close"] = '
  • '; 14 | $config["parent_tag_open"] = '
  • '; 15 | $config["parent_tag_close"] = '
  • '; 16 | $config["parent_anchor_tag"] = '%s'; 17 | $config["children_tag_open"] = ''; 19 | $config['icon_position'] = 'left'; // 'left' or 'right' 20 | $config['menu_icons_list'] = array(); 21 | // these for the future version 22 | $config['icon_img_base_url'] = ''; -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- 1 | array('grin.gif', '19', '19', 'grin'), 22 | ':lol:' => array('lol.gif', '19', '19', 'LOL'), 23 | ':cheese:' => array('cheese.gif', '19', '19', 'cheese'), 24 | ':)' => array('smile.gif', '19', '19', 'smile'), 25 | ';-)' => array('wink.gif', '19', '19', 'wink'), 26 | ';)' => array('wink.gif', '19', '19', 'wink'), 27 | ':smirk:' => array('smirk.gif', '19', '19', 'smirk'), 28 | ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'), 29 | ':-S' => array('confused.gif', '19', '19', 'confused'), 30 | ':wow:' => array('surprise.gif', '19', '19', 'surprised'), 31 | ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'), 32 | ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'), 33 | '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'), 34 | ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'), 35 | ':P' => array('raspberry.gif', '19', '19', 'raspberry'), 36 | ':blank:' => array('blank.gif', '19', '19', 'blank stare'), 37 | ':long:' => array('longface.gif', '19', '19', 'long face'), 38 | ':ohh:' => array('ohh.gif', '19', '19', 'ohh'), 39 | ':grrr:' => array('grrr.gif', '19', '19', 'grrr'), 40 | ':gulp:' => array('gulp.gif', '19', '19', 'gulp'), 41 | '8-/' => array('ohoh.gif', '19', '19', 'oh oh'), 42 | ':down:' => array('downer.gif', '19', '19', 'downer'), 43 | ':red:' => array('embarrassed.gif', '19', '19', 'red face'), 44 | ':sick:' => array('sick.gif', '19', '19', 'sick'), 45 | ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'), 46 | ':-/' => array('hmm.gif', '19', '19', 'hmmm'), 47 | '>:(' => array('mad.gif', '19', '19', 'mad'), 48 | ':mad:' => array('mad.gif', '19', '19', 'mad'), 49 | '>:-(' => array('angry.gif', '19', '19', 'angry'), 50 | ':angry:' => array('angry.gif', '19', '19', 'angry'), 51 | ':zip:' => array('zip.gif', '19', '19', 'zipper'), 52 | ':kiss:' => array('kiss.gif', '19', '19', 'kiss'), 53 | ':ahhh:' => array('shock.gif', '19', '19', 'shock'), 54 | ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'), 55 | ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'), 56 | ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'), 57 | ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'), 58 | ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'), 59 | ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'), 60 | ':vampire:' => array('vampire.gif', '19', '19', 'vampire'), 61 | ':snake:' => array('snake.gif', '19', '19', 'snake'), 62 | ':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'), 63 | ':question:' => array('question.gif', '19', '19', 'question') 64 | 65 | ); 66 | -------------------------------------------------------------------------------- /application/controllers/Test.php: -------------------------------------------------------------------------------- 1 | load->model("menu_model", "menu"); 10 | $items = $this->menu->all(); 11 | 12 | $this->load->library("multi_menu"); 13 | $this->multi_menu->set_items($items); 14 | } 15 | 16 | public function index() 17 | { 18 | $this->load->view("test_view"); 19 | } 20 | 21 | public function basic() 22 | { 23 | $this->load->view("basic"); 24 | } 25 | 26 | public function inject() 27 | { 28 | $this->load->view("inject"); 29 | } 30 | 31 | public function bootstrap1() 32 | { 33 | $config["nav_tag_open"] = '