├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── logo.png ├── sql └── osadmin_v2.1.0.sql └── uploads ├── ajax └── shortcut.php ├── assets ├── css │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ └── ui-icons_454545_256x240.png │ ├── jquery-ui.css │ └── other.css ├── font │ └── tahoma.ttf ├── images │ ├── 140x140.gif │ ├── 170x170.gif │ ├── black-Linen2.png │ ├── furley_bg1.png │ ├── furley_bg2.png │ └── subtle_surface.png ├── js │ ├── html5.js │ ├── jquery-ui.js │ └── other.js ├── lib │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootbox.js │ │ │ ├── bootbox.min.js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap.js │ ├── font-awesome │ │ ├── FontAwesome.ttf │ │ ├── css │ │ │ ├── font-awesome-ie7.css │ │ │ └── font-awesome.css │ │ ├── font │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── font-awesome-ie7.less │ │ │ └── font-awesome.less │ │ └── sass │ │ │ ├── font-awesome.sass │ │ │ └── font-awesome.scss │ ├── jquery-1.8.1.min.js │ └── jquery.cookie.js ├── stylesheets_blacktie │ └── theme.css ├── stylesheets_default │ └── theme.css ├── stylesheets_schoolpainting │ └── theme.css └── stylesheets_wintertide │ └── theme.css ├── include ├── class │ ├── Base.class.php │ ├── GroupRole.class.php │ ├── MenuUrl.class.php │ ├── Module.class.php │ ├── QuickNote.class.php │ ├── SideBar.class.php │ ├── SysLog.class.php │ ├── System.class.php │ ├── User.class.php │ ├── UserGroup.class.php │ ├── UserSession.class.php │ └── sample │ │ ├── Sample.class.php │ │ └── SampleBase.class.php ├── config │ └── config.inc.php ├── init.inc.php ├── lib │ ├── Common.class.php │ ├── ErrorMessage.class.php │ ├── ExcelReader.class.php │ ├── Medoo.class.php │ ├── OSAEncrypt.class.php │ ├── OSAdmin.class.php │ ├── Pagination.class.php │ ├── Smarty │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_config_source.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_filter_handler.php │ │ │ ├── smarty_internal_function_call_handler.php │ │ │ ├── smarty_internal_get_include_path.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_utility.php │ │ │ ├── smarty_internal_write_file.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ └── smarty_security.php │ ├── Spreadsheet_Excel_Reader.class.php │ └── Template.class.php └── template │ ├── _restore_db_.tpl │ ├── error.tpl │ ├── footer.tpl │ ├── header.tpl │ ├── index.tpl │ ├── login.tpl │ ├── message.tpl │ ├── navibar.tpl │ ├── panel │ ├── group.tpl │ ├── group_add.tpl │ ├── group_modify.tpl │ ├── group_role.tpl │ ├── groups.tpl │ ├── icon_select.tpl │ ├── menu_add.tpl │ ├── menu_modify.tpl │ ├── menus.tpl │ ├── module.tpl │ ├── module_add.tpl │ ├── module_modify.tpl │ ├── modules.tpl │ ├── profile.tpl │ ├── quicknote_add.tpl │ ├── quicknote_modify.tpl │ ├── quicknotes.tpl │ ├── setting.tpl │ ├── syslog.tpl │ ├── system.tpl │ ├── user_add.tpl │ ├── user_modify.tpl │ └── users.tpl │ ├── sample │ ├── read_excel.tpl │ └── sample.tpl │ ├── sidebar.tpl │ ├── simple_header.tpl │ └── success.tpl ├── index.php ├── panel ├── _restore_db_.php ├── group.php ├── group_add.php ├── group_modify.php ├── group_role.php ├── groups.php ├── index.php ├── login.php ├── logout.php ├── menu_add.php ├── menu_modify.php ├── menus.php ├── module.php ├── module_add.php ├── module_modify.php ├── modules.php ├── pdo.php ├── profile.php ├── quicknote_add.php ├── quicknote_modify.php ├── quicknotes.php ├── set.php ├── setting.php ├── syslog.php ├── system.php ├── user_add.php ├── user_modify.php ├── users.php └── verify_code_cn.php ├── robots.txt └── sample ├── read_excel.php └── sample.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/logo.png -------------------------------------------------------------------------------- /sql/osadmin_v2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/sql/osadmin_v2.1.0.sql -------------------------------------------------------------------------------- /uploads/ajax/shortcut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/ajax/shortcut.php -------------------------------------------------------------------------------- /uploads/assets/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /uploads/assets/css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /uploads/assets/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/css/jquery-ui.css -------------------------------------------------------------------------------- /uploads/assets/css/other.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/css/other.css -------------------------------------------------------------------------------- /uploads/assets/font/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/font/tahoma.ttf -------------------------------------------------------------------------------- /uploads/assets/images/140x140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/140x140.gif -------------------------------------------------------------------------------- /uploads/assets/images/170x170.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/170x170.gif -------------------------------------------------------------------------------- /uploads/assets/images/black-Linen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/black-Linen2.png -------------------------------------------------------------------------------- /uploads/assets/images/furley_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/furley_bg1.png -------------------------------------------------------------------------------- /uploads/assets/images/furley_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/furley_bg2.png -------------------------------------------------------------------------------- /uploads/assets/images/subtle_surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/images/subtle_surface.png -------------------------------------------------------------------------------- /uploads/assets/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/js/html5.js -------------------------------------------------------------------------------- /uploads/assets/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/js/jquery-ui.js -------------------------------------------------------------------------------- /uploads/assets/js/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/js/other.js -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/js/bootbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/js/bootbox.js -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/js/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/js/bootbox.min.js -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/js/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/js/bootstrap-modal.js -------------------------------------------------------------------------------- /uploads/assets/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/FontAwesome.ttf -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/css/font-awesome-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/css/font-awesome-ie7.css -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/less/font-awesome-ie7.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/less/font-awesome-ie7.less -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/sass/font-awesome.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/sass/font-awesome.sass -------------------------------------------------------------------------------- /uploads/assets/lib/font-awesome/sass/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/font-awesome/sass/font-awesome.scss -------------------------------------------------------------------------------- /uploads/assets/lib/jquery-1.8.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/jquery-1.8.1.min.js -------------------------------------------------------------------------------- /uploads/assets/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/lib/jquery.cookie.js -------------------------------------------------------------------------------- /uploads/assets/stylesheets_blacktie/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/stylesheets_blacktie/theme.css -------------------------------------------------------------------------------- /uploads/assets/stylesheets_default/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/stylesheets_default/theme.css -------------------------------------------------------------------------------- /uploads/assets/stylesheets_schoolpainting/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/stylesheets_schoolpainting/theme.css -------------------------------------------------------------------------------- /uploads/assets/stylesheets_wintertide/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/assets/stylesheets_wintertide/theme.css -------------------------------------------------------------------------------- /uploads/include/class/Base.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/Base.class.php -------------------------------------------------------------------------------- /uploads/include/class/GroupRole.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/GroupRole.class.php -------------------------------------------------------------------------------- /uploads/include/class/MenuUrl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/MenuUrl.class.php -------------------------------------------------------------------------------- /uploads/include/class/Module.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/Module.class.php -------------------------------------------------------------------------------- /uploads/include/class/QuickNote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/QuickNote.class.php -------------------------------------------------------------------------------- /uploads/include/class/SideBar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/SideBar.class.php -------------------------------------------------------------------------------- /uploads/include/class/SysLog.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/SysLog.class.php -------------------------------------------------------------------------------- /uploads/include/class/System.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/System.class.php -------------------------------------------------------------------------------- /uploads/include/class/User.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/User.class.php -------------------------------------------------------------------------------- /uploads/include/class/UserGroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/UserGroup.class.php -------------------------------------------------------------------------------- /uploads/include/class/UserSession.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/UserSession.class.php -------------------------------------------------------------------------------- /uploads/include/class/sample/Sample.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/sample/Sample.class.php -------------------------------------------------------------------------------- /uploads/include/class/sample/SampleBase.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/class/sample/SampleBase.class.php -------------------------------------------------------------------------------- /uploads/include/config/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/config/config.inc.php -------------------------------------------------------------------------------- /uploads/include/init.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/init.inc.php -------------------------------------------------------------------------------- /uploads/include/lib/Common.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Common.class.php -------------------------------------------------------------------------------- /uploads/include/lib/ErrorMessage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/ErrorMessage.class.php -------------------------------------------------------------------------------- /uploads/include/lib/ExcelReader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/ExcelReader.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Medoo.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Medoo.class.php -------------------------------------------------------------------------------- /uploads/include/lib/OSAEncrypt.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/OSAEncrypt.class.php -------------------------------------------------------------------------------- /uploads/include/lib/OSAdmin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/OSAdmin.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Pagination.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Pagination.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/Smarty.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/SmartyBC.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/SmartyBC.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/debug.tpl -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/block.textformat.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.counter.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_image.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_options.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_radios.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.html_table.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.mailto.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/function.math.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.escape.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.replace.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.cat.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.count_characters.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.count_paragraphs.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.count_sentences.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.count_words.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.default.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.escape.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.from_charset.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.indent.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.lower.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.noprint.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.string_format.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.strip.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.strip_tags.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.to_charset.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.unescape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.unescape.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.upper.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/modifiercompiler.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/modifiercompiler.wordwrap.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.literal_compiler_param.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.mb_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.mb_str_replace.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.mb_unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.mb_unicode.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/shared.mb_wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/shared.mb_wordwrap.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/plugins/variablefilter.htmlspecialchars.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_cacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_cacheresource.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_cacheresource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_cacheresource_custom.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_config_source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_config_source.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_cacheresource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_cacheresource_file.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_append.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_assign.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_block.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_break.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_call.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_capture.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_config_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_config_load.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_continue.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_debug.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_eval.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_extends.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_for.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_for.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_foreach.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_function.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_if.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_include.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_include_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_include_php.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_insert.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_ldelim.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_nocache.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_modifier.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_object_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_object_function.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_rdelim.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_section.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_setfilter.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compile_while.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_compilebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_compilebase.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_config.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_config_file_compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_config_file_compiler.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_configfilelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_configfilelexer.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_configfileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_configfileparser.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_filter_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_filter_handler.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_function_call_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_function_call_handler.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_get_include_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_get_include_path.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_nocache_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_nocache_insert.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_parsetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_parsetree.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_eval.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_extends.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_file.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_php.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_registered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_registered.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_stream.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_resource_string.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_templatebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_templatebase.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_templatecompilerbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_templatecompilerbase.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_templatelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_templatelexer.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_templateparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_templateparser.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_utility.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_internal_write_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_internal_write_file.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_resource.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_resource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_resource_custom.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_resource_recompiled.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_resource_uncompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_resource_uncompiled.php -------------------------------------------------------------------------------- /uploads/include/lib/Smarty/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Smarty/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /uploads/include/lib/Spreadsheet_Excel_Reader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Spreadsheet_Excel_Reader.class.php -------------------------------------------------------------------------------- /uploads/include/lib/Template.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/lib/Template.class.php -------------------------------------------------------------------------------- /uploads/include/template/_restore_db_.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/_restore_db_.tpl -------------------------------------------------------------------------------- /uploads/include/template/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/error.tpl -------------------------------------------------------------------------------- /uploads/include/template/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/footer.tpl -------------------------------------------------------------------------------- /uploads/include/template/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/header.tpl -------------------------------------------------------------------------------- /uploads/include/template/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/index.tpl -------------------------------------------------------------------------------- /uploads/include/template/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/login.tpl -------------------------------------------------------------------------------- /uploads/include/template/message.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/message.tpl -------------------------------------------------------------------------------- /uploads/include/template/navibar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/navibar.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/group.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/group.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/group_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/group_add.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/group_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/group_modify.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/group_role.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/group_role.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/groups.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/groups.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/icon_select.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/icon_select.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/menu_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/menu_add.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/menu_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/menu_modify.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/menus.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/menus.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/module.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/module.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/module_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/module_add.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/module_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/module_modify.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/modules.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/modules.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/profile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/profile.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/quicknote_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/quicknote_add.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/quicknote_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/quicknote_modify.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/quicknotes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/quicknotes.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/setting.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/setting.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/syslog.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/syslog.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/system.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/system.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/user_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/user_add.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/user_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/user_modify.tpl -------------------------------------------------------------------------------- /uploads/include/template/panel/users.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/panel/users.tpl -------------------------------------------------------------------------------- /uploads/include/template/sample/read_excel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/sample/read_excel.tpl -------------------------------------------------------------------------------- /uploads/include/template/sample/sample.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/sample/sample.tpl -------------------------------------------------------------------------------- /uploads/include/template/sidebar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/sidebar.tpl -------------------------------------------------------------------------------- /uploads/include/template/simple_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/simple_header.tpl -------------------------------------------------------------------------------- /uploads/include/template/success.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goglezon/OSAdmin/HEAD/uploads/include/template/success.tpl -------------------------------------------------------------------------------- /uploads/index.php: -------------------------------------------------------------------------------- 1 |