├── administrator ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── routes.php │ ├── smileys.php │ ├── translator.php │ └── user_agents.php ├── controllers │ ├── account.php │ ├── bankaccount.php │ ├── category.php │ ├── configuration.php │ ├── contacts.php │ ├── currency.php │ ├── dish.php │ ├── index.html │ ├── ingredient.php │ ├── login.php │ ├── main.php │ ├── printer.php │ ├── stock.php │ ├── table.php │ ├── translator.php │ └── user.php ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── my_url_helper.php ├── hooks │ └── index.html ├── index.php ├── language │ └── english │ │ ├── index.html │ │ └── smartrestaurant_lang.php ├── libraries │ ├── Site_sentry.php │ └── index.html ├── models │ ├── account │ │ └── account_model.php │ ├── bankaccount │ │ └── bankaccount_model.php │ ├── category │ │ └── category_model.php │ ├── configuration │ │ └── configuration_model.php │ ├── contacts │ │ └── contacts_model.php │ ├── currency │ │ └── currency_model.php │ ├── dish │ │ └── dish_model.php │ ├── index.html │ ├── ingredient │ │ └── ingredient_model.php │ ├── printer │ │ └── printer_model.php │ ├── stock │ │ └── stock_model.php │ ├── table │ │ └── table_model.php │ └── user │ │ └── user_model.php └── views │ ├── account │ ├── account_actual.php │ ├── account_edit.php │ ├── account_list.php │ ├── account_movement.php │ ├── account_sector.php │ ├── account_waiter.php │ ├── report_movement.php │ ├── report_sector.php │ └── report_waiter.php │ ├── bankaccount │ ├── bankaccount_actual.php │ ├── bankaccount_edit.php │ ├── bankaccount_list.php │ ├── bankaccount_movement.php │ ├── bankmovement_edit.php │ ├── bankmovement_list.php │ ├── report_actual.php │ └── report_movement.php │ ├── category │ ├── category_edit.php │ └── category_list.php │ ├── configuration │ └── configuration_list.php │ ├── contacts │ ├── contacts_edit.php │ └── contacts_list.php │ ├── currency │ ├── currency_edit.php │ └── currency_list.php │ ├── dish │ ├── dish_edit.php │ └── dish_list.php │ ├── footer.php │ ├── index.html │ ├── ingredient │ ├── dish_list_by_ingredient.php │ ├── ingredient_edit.php │ └── ingredient_list.php │ ├── login │ └── login.php │ ├── main.php │ ├── menu.php │ ├── printer │ ├── printer_edit.php │ └── printer_list.php │ ├── stock │ ├── report_actual.php │ ├── report_movement.php │ ├── stock_actual.php │ ├── stock_add.php │ └── stock_movement.php │ ├── table │ ├── table_edit.php │ └── table_list.php │ ├── translator │ ├── confirmLangSaved.php │ ├── container.php │ ├── footer.php │ ├── header.php │ ├── menu.php │ ├── saveFailed.php │ ├── saveLang.php │ ├── selectLangDirectory.php │ ├── selectMasterLang.php │ ├── selectModule.php │ ├── selectSlaveLang.php │ └── translateLang.php │ └── user │ ├── user_edit.php │ └── user_list.php ├── conf ├── config.constants.inc.php └── config.inc.php ├── css ├── ColorPicker.css ├── forms.css ├── general.css ├── ie6.css ├── ie7.css ├── images │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ ├── ui-bg_flat_0_333333_40x100.png │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_flat_65_ffffff_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_15_3b89ba_1x100.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_004276_256x240.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ ├── ui-icons_cc0000_256x240.png │ ├── ui-icons_cd0a0a_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── login.css ├── messages.css ├── reset.css ├── styles.css ├── styles │ ├── default │ │ ├── images │ │ │ ├── header-bg.png │ │ │ ├── icons-blue.png │ │ │ ├── icons-gray.png │ │ │ ├── icons-lgray.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ └── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ └── ui.css │ ├── images │ │ ├── icons │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── notice.png │ │ │ └── success.png │ │ ├── logo.png │ │ └── ui │ │ │ └── ui-bg_flat_0_aaaaaa_40x100.png │ └── light_blue │ │ ├── images │ │ ├── header-bg.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── ui-icons_217bc0_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_469bdd_256x240.png │ │ ├── ui-icons_6da8d5_256x240.png │ │ ├── ui-icons_d8e7f3_256x240.png │ │ └── ui-icons_f9bd01_256x240.png │ │ └── ui.css ├── stylesheet.css └── tables.css ├── demo_data.sql ├── drivers ├── custom_sprints.php ├── epson_fp90.php ├── epson_tmu295.php ├── manufacturer_model.php ├── star.php └── tm.php ├── funs_common.php ├── gpl.txt ├── help_from.txt ├── images ├── administrator │ ├── add.png │ ├── application_edit.png │ ├── cross.png │ └── pdf.png ├── home_menu │ ├── blockdevice.png │ ├── header_bg.jpg │ ├── install_logo.png │ ├── new-logo.png │ ├── pda_alt.png │ └── setup_assistant.png ├── pos │ ├── bkg.png │ ├── blueTable.png │ ├── category.png │ ├── close.png │ ├── dish.png │ ├── dm_bottom.png │ ├── dm_repeat.png │ ├── dm_top.png │ ├── down.png │ ├── error.png │ ├── field.png │ ├── greenTable.png │ ├── hide.png │ ├── home.png │ ├── info.png │ ├── logout.png │ ├── negative.png │ ├── no.png │ ├── ok.png │ ├── pencil.png │ ├── personal.png │ ├── positive.png │ ├── print.png │ ├── redTable.png │ ├── show.png │ ├── source.png │ ├── tabContent.png │ ├── tabContentHover.png │ ├── table.png │ ├── tabsNavActive.png │ ├── tabsNavBg.png │ ├── tabsNavHover.png │ ├── trash.png │ ├── up.png │ └── yellowTable.png └── waiter │ ├── fileclose.png │ ├── little_trash.png │ └── negative.png ├── include ├── access_control.php ├── autocalc_admin.php ├── bills_waiter.php ├── cache_class.php ├── categories_admin.php ├── categories_waiter.php ├── common_waiter.php ├── countries_class.php ├── currencies_admin.php ├── customer_waiter.php ├── discounts_waiter.php ├── dishes_admin.php ├── drivers_waiter.php ├── error_codes.php ├── ingredients_admin.php ├── key_binds_waiter.php ├── manage │ ├── db.php │ ├── mgmt_funs_other.php │ ├── mgmt_funs_receipt.php │ ├── mgmt_funs_stock.php │ ├── mgmt_start.php │ ├── mgmt_start_new.php │ └── receipt.php ├── mods_waiter.php ├── mysql_class.php ├── navbars_waiter.php ├── object_class_admin.php ├── orders_waiter.php ├── orders_waiter_class.php ├── printers_admin.php ├── printing_waiter.php ├── search_class.php ├── stock │ ├── stock_ingredient_quantity.php │ ├── stock_movement.php │ └── stock_object.php ├── tables_admin.php ├── tables_waiter.php ├── takeaway_waiter.php ├── templates_class.php ├── toplist_waiter.php ├── user_class.php ├── vatrates_admin.php ├── xml_class.php └── xtemplate │ ├── README.txt │ ├── caching_xtemplate.class.php │ ├── changelog.txt │ ├── license.txt │ └── xtemplate.class.php ├── includes.php ├── index.php ├── install ├── db.mysql.php ├── index.html ├── install.php └── smartrestaurant.sql ├── js ├── ColorPicker.js ├── cookie.js ├── custom.js ├── growlCustom.js ├── jquery-1.3.2.min.js ├── jquery-ui-1.7.2.js ├── jquery.fixedposition.js ├── jquery.form.js ├── jquery.growl.js ├── jquery.highlightFade.js ├── jquery.jeditable.js ├── jquery.jeditable.mini.js ├── jquery.metadata.js ├── jquery.simplemodal.js ├── jquery.tooltip.js ├── jquery.validate.min.js ├── pngfix.js ├── styles.js.php ├── superfish.js ├── tabber.js ├── tablesorter-pager.js ├── tablesorter.js └── tooltip.js ├── lang ├── lang_en.xml └── lang_sq.php ├── license.txt ├── min ├── .htaccess ├── README.txt ├── builder │ ├── _index.js │ ├── bm.js │ ├── index.php │ ├── ocCheck.php │ └── rewriteTest.js ├── config.php ├── groupsConfig.php ├── index.php ├── lib │ ├── FirePHP.php │ ├── HTTP │ │ ├── ConditionalGet.php │ │ └── Encoder.php │ ├── JSMin.php │ ├── Minify.php │ ├── Minify │ │ ├── Build.php │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── Compressor.php │ │ │ └── UriRewriter.php │ │ ├── Cache │ │ │ ├── APC.php │ │ │ ├── File.php │ │ │ └── Memcache.php │ │ ├── CommentPreserver.php │ │ ├── Controller │ │ │ ├── Base.php │ │ │ ├── Files.php │ │ │ ├── Groups.php │ │ │ ├── MinApp.php │ │ │ ├── Page.php │ │ │ └── Version1.php │ │ ├── HTML.php │ │ ├── ImportProcessor.php │ │ ├── Javascript.php │ │ ├── Lines.php │ │ ├── Logger.php │ │ ├── Packer.php │ │ ├── Source.php │ │ └── YUICompressor.php │ ├── MyMin.php │ └── Solar │ │ └── Dir.php └── utils.php ├── pos ├── dailyincome.php ├── disconnect.php ├── generic.js ├── index.php ├── orders.php ├── tables.php └── waiter_start.php ├── smart-restaurant.tar.gz ├── system ├── cache │ └── index.html ├── codeigniter │ ├── Base4.php │ ├── Base5.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Compat.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── 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 │ │ ├── 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 │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── compatibility_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 ├── 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 │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── scaffolding_lang.php │ │ ├── unit_test_lang.php │ │ ├── upload_lang.php │ │ └── validation_lang.php │ └── index.html ├── libraries │ ├── Benchmark.php │ ├── Calendar.php │ ├── Cart.php │ ├── Config.php │ ├── Controller.php │ ├── Email.php │ ├── Encrypt.php │ ├── Exceptions.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Hooks.php │ ├── Image_lib.php │ ├── Input.php │ ├── Language.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Router.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── URI.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Userauth.php │ ├── Validation.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── logs │ └── index.html ├── plugins │ ├── captcha_pi.php │ ├── dompdf │ │ ├── LICENSE.LGPL │ │ ├── dompdf.php │ │ ├── dompdf_config.inc.php │ │ ├── include │ │ │ ├── abstract_renderer.cls.php │ │ │ ├── attribute_translator.cls.php │ │ │ ├── block_frame_decorator.cls.php │ │ │ ├── block_frame_reflower.cls.php │ │ │ ├── block_positioner.cls.php │ │ │ ├── block_renderer.cls.php │ │ │ ├── br_frame_reflower.cls.php │ │ │ ├── cached_pdf_decorator.cls.php │ │ │ ├── canvas.cls.php │ │ │ ├── canvas_factory.cls.php │ │ │ ├── cellmap.cls.php │ │ │ ├── cpdf_adapter.cls.php │ │ │ ├── dompdf.cls.php │ │ │ ├── dompdf_exception.cls.php │ │ │ ├── dompdf_internal_exception.cls.php │ │ │ ├── font_metrics.cls.php │ │ │ ├── frame.cls.php │ │ │ ├── frame_decorator.cls.php │ │ │ ├── frame_factory.cls.php │ │ │ ├── frame_reflower.cls.php │ │ │ ├── frame_tree.cls.php │ │ │ ├── functions.inc.php │ │ │ ├── gd_adapter.cls.php │ │ │ ├── generated_frame_reflower.cls.php │ │ │ ├── image_cache.cls.php │ │ │ ├── image_frame_decorator.cls.php │ │ │ ├── image_frame_reflower.cls.php │ │ │ ├── image_renderer.cls.php │ │ │ ├── inline_frame_decorator.cls.php │ │ │ ├── inline_frame_reflower.cls.php │ │ │ ├── inline_positioner.cls.php │ │ │ ├── inline_renderer.cls.php │ │ │ ├── list_bullet_frame_decorator.cls.php │ │ │ ├── list_bullet_frame_reflower.cls.php │ │ │ ├── list_bullet_image_frame_decorator.cls.php │ │ │ ├── list_bullet_positioner.cls.php │ │ │ ├── list_bullet_renderer.cls.php │ │ │ ├── null_frame_decorator.cls.php │ │ │ ├── null_frame_reflower.cls.php │ │ │ ├── null_positioner.cls.php │ │ │ ├── page_cache.cls.php │ │ │ ├── page_frame_decorator.cls.php │ │ │ ├── page_frame_reflower.cls.php │ │ │ ├── pdflib_adapter.cls.php │ │ │ ├── php_evaluator.cls.php │ │ │ ├── positioner.cls.php │ │ │ ├── renderer.cls.php │ │ │ ├── style.cls.php │ │ │ ├── stylesheet.cls.php │ │ │ ├── table_cell_frame_decorator.cls.php │ │ │ ├── table_cell_frame_reflower.cls.php │ │ │ ├── table_cell_positioner.cls.php │ │ │ ├── table_cell_renderer.cls.php │ │ │ ├── table_frame_decorator.cls.php │ │ │ ├── table_frame_reflower.cls.php │ │ │ ├── table_row_frame_decorator.cls.php │ │ │ ├── table_row_frame_reflower.cls.php │ │ │ ├── table_row_group_frame_decorator.cls.php │ │ │ ├── table_row_group_frame_reflower.cls.php │ │ │ ├── table_row_positioner.cls.php │ │ │ ├── tcpdf_adapter.cls.php │ │ │ ├── text_frame_decorator.cls.php │ │ │ ├── text_frame_reflower.cls.php │ │ │ └── text_renderer.cls.php │ │ ├── lib │ │ │ ├── class.ezpdf.php │ │ │ ├── class.pdf.php │ │ │ ├── fonts │ │ │ │ ├── Courier-Bold.afm │ │ │ │ ├── Courier-BoldOblique.afm │ │ │ │ ├── Courier-Oblique.afm │ │ │ │ ├── Courier.afm │ │ │ │ ├── Helvetica-Bold.afm │ │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ │ ├── Helvetica-Oblique.afm │ │ │ │ ├── Helvetica.afm │ │ │ │ ├── Symbol.afm │ │ │ │ ├── Times-Bold.afm │ │ │ │ ├── Times-BoldItalic.afm │ │ │ │ ├── Times-Italic.afm │ │ │ │ ├── Times-Roman.afm │ │ │ │ ├── ZapfDingbats.afm │ │ │ │ ├── dompdf_font_family_cache │ │ │ │ ├── dompdf_font_family_cache.dist │ │ │ │ ├── php_Courier-Bold.afm │ │ │ │ ├── php_Courier-BoldOblique.afm │ │ │ │ ├── php_Courier-Oblique.afm │ │ │ │ ├── php_Courier.afm │ │ │ │ ├── php_Helvetica-Bold.afm │ │ │ │ ├── php_Helvetica-BoldOblique.afm │ │ │ │ ├── php_Helvetica-Oblique.afm │ │ │ │ ├── php_Helvetica.afm │ │ │ │ ├── php_Symbol.afm │ │ │ │ ├── php_Times-Bold.afm │ │ │ │ ├── php_Times-BoldItalic.afm │ │ │ │ ├── php_Times-Italic.afm │ │ │ │ ├── php_Times-Roman.afm │ │ │ │ ├── php_ZapfDingbats.afm │ │ │ │ ├── php_a0100131.afm │ │ │ │ └── php_a010013l.afm │ │ │ └── res │ │ │ │ ├── broken_image.png │ │ │ │ └── html.css │ │ └── load_font.php │ ├── index.html │ ├── js_calendar_pi.php │ ├── to_excel_pi.php │ ├── to_pdf_pi.php │ └── to_xml_pi.php └── scaffolding │ ├── Scaffolding.php │ ├── images │ ├── background.jpg │ ├── index.html │ └── logo.jpg │ ├── index.html │ └── views │ ├── add.php │ ├── delete.php │ ├── edit.php │ ├── footer.php │ ├── header.php │ ├── index.html │ ├── no_data.php │ ├── stylesheet.css │ └── view.php ├── templates └── default │ ├── authentication.tpl │ ├── bill_select.tpl │ ├── bill_select_pos.tpl │ ├── closed_table.tpl │ ├── closed_table_pos.tpl │ ├── dailyincome.tpl │ ├── disconnect.tpl │ ├── dishlist.tpl │ ├── edit.tpl │ ├── edit_pos.tpl │ ├── modslist.tpl │ ├── modslist_pos.tpl │ ├── orders.tpl │ ├── orders_pos.tpl │ ├── orders_takeaway.tpl │ ├── printing.tpl │ ├── prints │ ├── bill.tpl │ ├── invoice.tpl │ ├── priority_go.tpl │ ├── receipt.tpl │ ├── ticket.tpl │ └── ticket_takeaway.tpl │ ├── question.tpl │ ├── standard.tpl │ ├── tables.tpl │ ├── tables_pos.tpl │ └── template.tpl └── waiter ├── disconnect.php ├── index.php ├── orders.php ├── tables.php ├── waiter.js └── waiter_start.php /administrator/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/autoload.php -------------------------------------------------------------------------------- /administrator/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/config.php -------------------------------------------------------------------------------- /administrator/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/constants.php -------------------------------------------------------------------------------- /administrator/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/database.php -------------------------------------------------------------------------------- /administrator/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/hooks.php -------------------------------------------------------------------------------- /administrator/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/index.html -------------------------------------------------------------------------------- /administrator/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/mimes.php -------------------------------------------------------------------------------- /administrator/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/routes.php -------------------------------------------------------------------------------- /administrator/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/smileys.php -------------------------------------------------------------------------------- /administrator/config/translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/translator.php -------------------------------------------------------------------------------- /administrator/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/config/user_agents.php -------------------------------------------------------------------------------- /administrator/controllers/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/account.php -------------------------------------------------------------------------------- /administrator/controllers/bankaccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/bankaccount.php -------------------------------------------------------------------------------- /administrator/controllers/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/category.php -------------------------------------------------------------------------------- /administrator/controllers/configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/configuration.php -------------------------------------------------------------------------------- /administrator/controllers/contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/contacts.php -------------------------------------------------------------------------------- /administrator/controllers/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/currency.php -------------------------------------------------------------------------------- /administrator/controllers/dish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/dish.php -------------------------------------------------------------------------------- /administrator/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/index.html -------------------------------------------------------------------------------- /administrator/controllers/ingredient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/ingredient.php -------------------------------------------------------------------------------- /administrator/controllers/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/login.php -------------------------------------------------------------------------------- /administrator/controllers/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/main.php -------------------------------------------------------------------------------- /administrator/controllers/printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/printer.php -------------------------------------------------------------------------------- /administrator/controllers/stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/stock.php -------------------------------------------------------------------------------- /administrator/controllers/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/table.php -------------------------------------------------------------------------------- /administrator/controllers/translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/translator.php -------------------------------------------------------------------------------- /administrator/controllers/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/controllers/user.php -------------------------------------------------------------------------------- /administrator/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/errors/error_404.php -------------------------------------------------------------------------------- /administrator/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/errors/error_db.php -------------------------------------------------------------------------------- /administrator/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/errors/error_general.php -------------------------------------------------------------------------------- /administrator/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/errors/error_php.php -------------------------------------------------------------------------------- /administrator/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/errors/index.html -------------------------------------------------------------------------------- /administrator/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/helpers/index.html -------------------------------------------------------------------------------- /administrator/helpers/my_url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/helpers/my_url_helper.php -------------------------------------------------------------------------------- /administrator/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/hooks/index.html -------------------------------------------------------------------------------- /administrator/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/index.php -------------------------------------------------------------------------------- /administrator/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/language/english/index.html -------------------------------------------------------------------------------- /administrator/language/english/smartrestaurant_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/language/english/smartrestaurant_lang.php -------------------------------------------------------------------------------- /administrator/libraries/Site_sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/libraries/Site_sentry.php -------------------------------------------------------------------------------- /administrator/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/libraries/index.html -------------------------------------------------------------------------------- /administrator/models/account/account_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/account/account_model.php -------------------------------------------------------------------------------- /administrator/models/bankaccount/bankaccount_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/bankaccount/bankaccount_model.php -------------------------------------------------------------------------------- /administrator/models/category/category_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/category/category_model.php -------------------------------------------------------------------------------- /administrator/models/configuration/configuration_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/configuration/configuration_model.php -------------------------------------------------------------------------------- /administrator/models/contacts/contacts_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/contacts/contacts_model.php -------------------------------------------------------------------------------- /administrator/models/currency/currency_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/currency/currency_model.php -------------------------------------------------------------------------------- /administrator/models/dish/dish_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/dish/dish_model.php -------------------------------------------------------------------------------- /administrator/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/index.html -------------------------------------------------------------------------------- /administrator/models/ingredient/ingredient_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/ingredient/ingredient_model.php -------------------------------------------------------------------------------- /administrator/models/printer/printer_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/printer/printer_model.php -------------------------------------------------------------------------------- /administrator/models/stock/stock_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/stock/stock_model.php -------------------------------------------------------------------------------- /administrator/models/table/table_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/table/table_model.php -------------------------------------------------------------------------------- /administrator/models/user/user_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/models/user/user_model.php -------------------------------------------------------------------------------- /administrator/views/account/account_actual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_actual.php -------------------------------------------------------------------------------- /administrator/views/account/account_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_edit.php -------------------------------------------------------------------------------- /administrator/views/account/account_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_list.php -------------------------------------------------------------------------------- /administrator/views/account/account_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_movement.php -------------------------------------------------------------------------------- /administrator/views/account/account_sector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_sector.php -------------------------------------------------------------------------------- /administrator/views/account/account_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/account_waiter.php -------------------------------------------------------------------------------- /administrator/views/account/report_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/report_movement.php -------------------------------------------------------------------------------- /administrator/views/account/report_sector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/report_sector.php -------------------------------------------------------------------------------- /administrator/views/account/report_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/account/report_waiter.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankaccount_actual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankaccount_actual.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankaccount_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankaccount_edit.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankaccount_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankaccount_list.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankaccount_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankaccount_movement.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankmovement_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankmovement_edit.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/bankmovement_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/bankmovement_list.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/report_actual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/report_actual.php -------------------------------------------------------------------------------- /administrator/views/bankaccount/report_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/bankaccount/report_movement.php -------------------------------------------------------------------------------- /administrator/views/category/category_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/category/category_edit.php -------------------------------------------------------------------------------- /administrator/views/category/category_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/category/category_list.php -------------------------------------------------------------------------------- /administrator/views/configuration/configuration_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/configuration/configuration_list.php -------------------------------------------------------------------------------- /administrator/views/contacts/contacts_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/contacts/contacts_edit.php -------------------------------------------------------------------------------- /administrator/views/contacts/contacts_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/contacts/contacts_list.php -------------------------------------------------------------------------------- /administrator/views/currency/currency_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/currency/currency_edit.php -------------------------------------------------------------------------------- /administrator/views/currency/currency_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/currency/currency_list.php -------------------------------------------------------------------------------- /administrator/views/dish/dish_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/dish/dish_edit.php -------------------------------------------------------------------------------- /administrator/views/dish/dish_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/dish/dish_list.php -------------------------------------------------------------------------------- /administrator/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/footer.php -------------------------------------------------------------------------------- /administrator/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/index.html -------------------------------------------------------------------------------- /administrator/views/ingredient/dish_list_by_ingredient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/ingredient/dish_list_by_ingredient.php -------------------------------------------------------------------------------- /administrator/views/ingredient/ingredient_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/ingredient/ingredient_edit.php -------------------------------------------------------------------------------- /administrator/views/ingredient/ingredient_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/ingredient/ingredient_list.php -------------------------------------------------------------------------------- /administrator/views/login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/login/login.php -------------------------------------------------------------------------------- /administrator/views/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/main.php -------------------------------------------------------------------------------- /administrator/views/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/menu.php -------------------------------------------------------------------------------- /administrator/views/printer/printer_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/printer/printer_edit.php -------------------------------------------------------------------------------- /administrator/views/printer/printer_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/printer/printer_list.php -------------------------------------------------------------------------------- /administrator/views/stock/report_actual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/stock/report_actual.php -------------------------------------------------------------------------------- /administrator/views/stock/report_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/stock/report_movement.php -------------------------------------------------------------------------------- /administrator/views/stock/stock_actual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/stock/stock_actual.php -------------------------------------------------------------------------------- /administrator/views/stock/stock_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/stock/stock_add.php -------------------------------------------------------------------------------- /administrator/views/stock/stock_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/stock/stock_movement.php -------------------------------------------------------------------------------- /administrator/views/table/table_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/table/table_edit.php -------------------------------------------------------------------------------- /administrator/views/table/table_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/table/table_list.php -------------------------------------------------------------------------------- /administrator/views/translator/confirmLangSaved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/confirmLangSaved.php -------------------------------------------------------------------------------- /administrator/views/translator/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/container.php -------------------------------------------------------------------------------- /administrator/views/translator/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/footer.php -------------------------------------------------------------------------------- /administrator/views/translator/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/header.php -------------------------------------------------------------------------------- /administrator/views/translator/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/menu.php -------------------------------------------------------------------------------- /administrator/views/translator/saveFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/saveFailed.php -------------------------------------------------------------------------------- /administrator/views/translator/saveLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/saveLang.php -------------------------------------------------------------------------------- /administrator/views/translator/selectLangDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/selectLangDirectory.php -------------------------------------------------------------------------------- /administrator/views/translator/selectMasterLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/selectMasterLang.php -------------------------------------------------------------------------------- /administrator/views/translator/selectModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/selectModule.php -------------------------------------------------------------------------------- /administrator/views/translator/selectSlaveLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/selectSlaveLang.php -------------------------------------------------------------------------------- /administrator/views/translator/translateLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/translator/translateLang.php -------------------------------------------------------------------------------- /administrator/views/user/user_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/user/user_edit.php -------------------------------------------------------------------------------- /administrator/views/user/user_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/administrator/views/user/user_list.php -------------------------------------------------------------------------------- /conf/config.constants.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/conf/config.constants.inc.php -------------------------------------------------------------------------------- /conf/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/conf/config.inc.php -------------------------------------------------------------------------------- /css/ColorPicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/ColorPicker.css -------------------------------------------------------------------------------- /css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/forms.css -------------------------------------------------------------------------------- /css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/general.css -------------------------------------------------------------------------------- /css/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/ie6.css -------------------------------------------------------------------------------- /css/ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/ie7.css -------------------------------------------------------------------------------- /css/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /css/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /css/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /css/images/ui-bg_dots-small_65_a6a6a6_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_dots-small_65_a6a6a6_2x2.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_55_fbf8ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_55_fbf8ee_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-soft_15_3b89ba_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-soft_15_3b89ba_1x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /css/images/ui-icons_004276_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_004276_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/login.css -------------------------------------------------------------------------------- /css/messages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/messages.css -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles.css -------------------------------------------------------------------------------- /css/styles/default/images/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/header-bg.png -------------------------------------------------------------------------------- /css/styles/default/images/icons-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/icons-blue.png -------------------------------------------------------------------------------- /css/styles/default/images/icons-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/icons-gray.png -------------------------------------------------------------------------------- /css/styles/default/images/icons-lgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/icons-lgray.png -------------------------------------------------------------------------------- /css/styles/default/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/styles/default/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/styles/default/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /css/styles/default/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /css/styles/default/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /css/styles/default/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/default/ui.css -------------------------------------------------------------------------------- /css/styles/images/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/icons/error.png -------------------------------------------------------------------------------- /css/styles/images/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/icons/info.png -------------------------------------------------------------------------------- /css/styles/images/icons/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/icons/notice.png -------------------------------------------------------------------------------- /css/styles/images/icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/icons/success.png -------------------------------------------------------------------------------- /css/styles/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/logo.png -------------------------------------------------------------------------------- /css/styles/images/ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/images/ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/header-bg.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /css/styles/light_blue/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/styles/light_blue/ui.css -------------------------------------------------------------------------------- /css/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/stylesheet.css -------------------------------------------------------------------------------- /css/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/css/tables.css -------------------------------------------------------------------------------- /demo_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/demo_data.sql -------------------------------------------------------------------------------- /drivers/custom_sprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/custom_sprints.php -------------------------------------------------------------------------------- /drivers/epson_fp90.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/epson_fp90.php -------------------------------------------------------------------------------- /drivers/epson_tmu295.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/epson_tmu295.php -------------------------------------------------------------------------------- /drivers/manufacturer_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/manufacturer_model.php -------------------------------------------------------------------------------- /drivers/star.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/star.php -------------------------------------------------------------------------------- /drivers/tm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/drivers/tm.php -------------------------------------------------------------------------------- /funs_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/funs_common.php -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/gpl.txt -------------------------------------------------------------------------------- /help_from.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/help_from.txt -------------------------------------------------------------------------------- /images/administrator/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/administrator/add.png -------------------------------------------------------------------------------- /images/administrator/application_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/administrator/application_edit.png -------------------------------------------------------------------------------- /images/administrator/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/administrator/cross.png -------------------------------------------------------------------------------- /images/administrator/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/administrator/pdf.png -------------------------------------------------------------------------------- /images/home_menu/blockdevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/blockdevice.png -------------------------------------------------------------------------------- /images/home_menu/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/header_bg.jpg -------------------------------------------------------------------------------- /images/home_menu/install_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/install_logo.png -------------------------------------------------------------------------------- /images/home_menu/new-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/new-logo.png -------------------------------------------------------------------------------- /images/home_menu/pda_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/pda_alt.png -------------------------------------------------------------------------------- /images/home_menu/setup_assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/home_menu/setup_assistant.png -------------------------------------------------------------------------------- /images/pos/bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/bkg.png -------------------------------------------------------------------------------- /images/pos/blueTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/blueTable.png -------------------------------------------------------------------------------- /images/pos/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/category.png -------------------------------------------------------------------------------- /images/pos/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/close.png -------------------------------------------------------------------------------- /images/pos/dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/dish.png -------------------------------------------------------------------------------- /images/pos/dm_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/dm_bottom.png -------------------------------------------------------------------------------- /images/pos/dm_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/dm_repeat.png -------------------------------------------------------------------------------- /images/pos/dm_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/dm_top.png -------------------------------------------------------------------------------- /images/pos/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/down.png -------------------------------------------------------------------------------- /images/pos/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/error.png -------------------------------------------------------------------------------- /images/pos/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/field.png -------------------------------------------------------------------------------- /images/pos/greenTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/greenTable.png -------------------------------------------------------------------------------- /images/pos/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/hide.png -------------------------------------------------------------------------------- /images/pos/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/home.png -------------------------------------------------------------------------------- /images/pos/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/info.png -------------------------------------------------------------------------------- /images/pos/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/logout.png -------------------------------------------------------------------------------- /images/pos/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/negative.png -------------------------------------------------------------------------------- /images/pos/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/no.png -------------------------------------------------------------------------------- /images/pos/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/ok.png -------------------------------------------------------------------------------- /images/pos/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/pencil.png -------------------------------------------------------------------------------- /images/pos/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/personal.png -------------------------------------------------------------------------------- /images/pos/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/positive.png -------------------------------------------------------------------------------- /images/pos/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/print.png -------------------------------------------------------------------------------- /images/pos/redTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/redTable.png -------------------------------------------------------------------------------- /images/pos/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/show.png -------------------------------------------------------------------------------- /images/pos/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/source.png -------------------------------------------------------------------------------- /images/pos/tabContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/tabContent.png -------------------------------------------------------------------------------- /images/pos/tabContentHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/tabContentHover.png -------------------------------------------------------------------------------- /images/pos/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/table.png -------------------------------------------------------------------------------- /images/pos/tabsNavActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/tabsNavActive.png -------------------------------------------------------------------------------- /images/pos/tabsNavBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/tabsNavBg.png -------------------------------------------------------------------------------- /images/pos/tabsNavHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/tabsNavHover.png -------------------------------------------------------------------------------- /images/pos/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/trash.png -------------------------------------------------------------------------------- /images/pos/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/up.png -------------------------------------------------------------------------------- /images/pos/yellowTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/pos/yellowTable.png -------------------------------------------------------------------------------- /images/waiter/fileclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/waiter/fileclose.png -------------------------------------------------------------------------------- /images/waiter/little_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/waiter/little_trash.png -------------------------------------------------------------------------------- /images/waiter/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/images/waiter/negative.png -------------------------------------------------------------------------------- /include/access_control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/access_control.php -------------------------------------------------------------------------------- /include/autocalc_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/autocalc_admin.php -------------------------------------------------------------------------------- /include/bills_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/bills_waiter.php -------------------------------------------------------------------------------- /include/cache_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/cache_class.php -------------------------------------------------------------------------------- /include/categories_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/categories_admin.php -------------------------------------------------------------------------------- /include/categories_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/categories_waiter.php -------------------------------------------------------------------------------- /include/common_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/common_waiter.php -------------------------------------------------------------------------------- /include/countries_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/countries_class.php -------------------------------------------------------------------------------- /include/currencies_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/currencies_admin.php -------------------------------------------------------------------------------- /include/customer_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/customer_waiter.php -------------------------------------------------------------------------------- /include/discounts_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/discounts_waiter.php -------------------------------------------------------------------------------- /include/dishes_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/dishes_admin.php -------------------------------------------------------------------------------- /include/drivers_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/drivers_waiter.php -------------------------------------------------------------------------------- /include/error_codes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/error_codes.php -------------------------------------------------------------------------------- /include/ingredients_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/ingredients_admin.php -------------------------------------------------------------------------------- /include/key_binds_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/key_binds_waiter.php -------------------------------------------------------------------------------- /include/manage/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/db.php -------------------------------------------------------------------------------- /include/manage/mgmt_funs_other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/mgmt_funs_other.php -------------------------------------------------------------------------------- /include/manage/mgmt_funs_receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/mgmt_funs_receipt.php -------------------------------------------------------------------------------- /include/manage/mgmt_funs_stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/mgmt_funs_stock.php -------------------------------------------------------------------------------- /include/manage/mgmt_start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/mgmt_start.php -------------------------------------------------------------------------------- /include/manage/mgmt_start_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/mgmt_start_new.php -------------------------------------------------------------------------------- /include/manage/receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/manage/receipt.php -------------------------------------------------------------------------------- /include/mods_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/mods_waiter.php -------------------------------------------------------------------------------- /include/mysql_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/mysql_class.php -------------------------------------------------------------------------------- /include/navbars_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/navbars_waiter.php -------------------------------------------------------------------------------- /include/object_class_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/object_class_admin.php -------------------------------------------------------------------------------- /include/orders_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/orders_waiter.php -------------------------------------------------------------------------------- /include/orders_waiter_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/orders_waiter_class.php -------------------------------------------------------------------------------- /include/printers_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/printers_admin.php -------------------------------------------------------------------------------- /include/printing_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/printing_waiter.php -------------------------------------------------------------------------------- /include/search_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/search_class.php -------------------------------------------------------------------------------- /include/stock/stock_ingredient_quantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/stock/stock_ingredient_quantity.php -------------------------------------------------------------------------------- /include/stock/stock_movement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/stock/stock_movement.php -------------------------------------------------------------------------------- /include/stock/stock_object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/stock/stock_object.php -------------------------------------------------------------------------------- /include/tables_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/tables_admin.php -------------------------------------------------------------------------------- /include/tables_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/tables_waiter.php -------------------------------------------------------------------------------- /include/takeaway_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/takeaway_waiter.php -------------------------------------------------------------------------------- /include/templates_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/templates_class.php -------------------------------------------------------------------------------- /include/toplist_waiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/toplist_waiter.php -------------------------------------------------------------------------------- /include/user_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/user_class.php -------------------------------------------------------------------------------- /include/vatrates_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/vatrates_admin.php -------------------------------------------------------------------------------- /include/xml_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xml_class.php -------------------------------------------------------------------------------- /include/xtemplate/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xtemplate/README.txt -------------------------------------------------------------------------------- /include/xtemplate/caching_xtemplate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xtemplate/caching_xtemplate.class.php -------------------------------------------------------------------------------- /include/xtemplate/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xtemplate/changelog.txt -------------------------------------------------------------------------------- /include/xtemplate/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xtemplate/license.txt -------------------------------------------------------------------------------- /include/xtemplate/xtemplate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/include/xtemplate/xtemplate.class.php -------------------------------------------------------------------------------- /includes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/includes.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/index.php -------------------------------------------------------------------------------- /install/db.mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/install/db.mysql.php -------------------------------------------------------------------------------- /install/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/install/install.php -------------------------------------------------------------------------------- /install/smartrestaurant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/install/smartrestaurant.sql -------------------------------------------------------------------------------- /js/ColorPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/ColorPicker.js -------------------------------------------------------------------------------- /js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/cookie.js -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/custom.js -------------------------------------------------------------------------------- /js/growlCustom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/growlCustom.js -------------------------------------------------------------------------------- /js/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /js/jquery-ui-1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery-ui-1.7.2.js -------------------------------------------------------------------------------- /js/jquery.fixedposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.fixedposition.js -------------------------------------------------------------------------------- /js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.form.js -------------------------------------------------------------------------------- /js/jquery.growl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.growl.js -------------------------------------------------------------------------------- /js/jquery.highlightFade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.highlightFade.js -------------------------------------------------------------------------------- /js/jquery.jeditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.jeditable.js -------------------------------------------------------------------------------- /js/jquery.jeditable.mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.jeditable.mini.js -------------------------------------------------------------------------------- /js/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.metadata.js -------------------------------------------------------------------------------- /js/jquery.simplemodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.simplemodal.js -------------------------------------------------------------------------------- /js/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.tooltip.js -------------------------------------------------------------------------------- /js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/jquery.validate.min.js -------------------------------------------------------------------------------- /js/pngfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/pngfix.js -------------------------------------------------------------------------------- /js/styles.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/styles.js.php -------------------------------------------------------------------------------- /js/superfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/superfish.js -------------------------------------------------------------------------------- /js/tabber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/tabber.js -------------------------------------------------------------------------------- /js/tablesorter-pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/tablesorter-pager.js -------------------------------------------------------------------------------- /js/tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/tablesorter.js -------------------------------------------------------------------------------- /js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/js/tooltip.js -------------------------------------------------------------------------------- /lang/lang_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/lang/lang_en.xml -------------------------------------------------------------------------------- /lang/lang_sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/lang/lang_sq.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/license.txt -------------------------------------------------------------------------------- /min/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/.htaccess -------------------------------------------------------------------------------- /min/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/README.txt -------------------------------------------------------------------------------- /min/builder/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/builder/_index.js -------------------------------------------------------------------------------- /min/builder/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/builder/bm.js -------------------------------------------------------------------------------- /min/builder/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/builder/index.php -------------------------------------------------------------------------------- /min/builder/ocCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/builder/ocCheck.php -------------------------------------------------------------------------------- /min/builder/rewriteTest.js: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /min/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/config.php -------------------------------------------------------------------------------- /min/groupsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/groupsConfig.php -------------------------------------------------------------------------------- /min/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/index.php -------------------------------------------------------------------------------- /min/lib/FirePHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/FirePHP.php -------------------------------------------------------------------------------- /min/lib/HTTP/ConditionalGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/HTTP/ConditionalGet.php -------------------------------------------------------------------------------- /min/lib/HTTP/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/HTTP/Encoder.php -------------------------------------------------------------------------------- /min/lib/JSMin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/JSMin.php -------------------------------------------------------------------------------- /min/lib/Minify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify.php -------------------------------------------------------------------------------- /min/lib/Minify/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Build.php -------------------------------------------------------------------------------- /min/lib/Minify/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/CSS.php -------------------------------------------------------------------------------- /min/lib/Minify/CSS/Compressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/CSS/Compressor.php -------------------------------------------------------------------------------- /min/lib/Minify/CSS/UriRewriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/CSS/UriRewriter.php -------------------------------------------------------------------------------- /min/lib/Minify/Cache/APC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Cache/APC.php -------------------------------------------------------------------------------- /min/lib/Minify/Cache/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Cache/File.php -------------------------------------------------------------------------------- /min/lib/Minify/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Cache/Memcache.php -------------------------------------------------------------------------------- /min/lib/Minify/CommentPreserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/CommentPreserver.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/Base.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/Files.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/Groups.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/MinApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/MinApp.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/Page.php -------------------------------------------------------------------------------- /min/lib/Minify/Controller/Version1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Controller/Version1.php -------------------------------------------------------------------------------- /min/lib/Minify/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/HTML.php -------------------------------------------------------------------------------- /min/lib/Minify/ImportProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/ImportProcessor.php -------------------------------------------------------------------------------- /min/lib/Minify/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Javascript.php -------------------------------------------------------------------------------- /min/lib/Minify/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Lines.php -------------------------------------------------------------------------------- /min/lib/Minify/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Logger.php -------------------------------------------------------------------------------- /min/lib/Minify/Packer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Packer.php -------------------------------------------------------------------------------- /min/lib/Minify/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/Source.php -------------------------------------------------------------------------------- /min/lib/Minify/YUICompressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Minify/YUICompressor.php -------------------------------------------------------------------------------- /min/lib/MyMin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/MyMin.php -------------------------------------------------------------------------------- /min/lib/Solar/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/lib/Solar/Dir.php -------------------------------------------------------------------------------- /min/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/min/utils.php -------------------------------------------------------------------------------- /pos/dailyincome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/dailyincome.php -------------------------------------------------------------------------------- /pos/disconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/disconnect.php -------------------------------------------------------------------------------- /pos/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/generic.js -------------------------------------------------------------------------------- /pos/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/index.php -------------------------------------------------------------------------------- /pos/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/orders.php -------------------------------------------------------------------------------- /pos/tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/tables.php -------------------------------------------------------------------------------- /pos/waiter_start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/pos/waiter_start.php -------------------------------------------------------------------------------- /smart-restaurant.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/smart-restaurant.tar.gz -------------------------------------------------------------------------------- /system/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/cache/index.html -------------------------------------------------------------------------------- /system/codeigniter/Base4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/Base4.php -------------------------------------------------------------------------------- /system/codeigniter/Base5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/Base5.php -------------------------------------------------------------------------------- /system/codeigniter/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/CodeIgniter.php -------------------------------------------------------------------------------- /system/codeigniter/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/Common.php -------------------------------------------------------------------------------- /system/codeigniter/Compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/Compat.php -------------------------------------------------------------------------------- /system/codeigniter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/codeigniter/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/compatibility_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/compatibility_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/scaffolding_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/scaffolding_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/english/validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/english/validation_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Benchmark.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Config.php -------------------------------------------------------------------------------- /system/libraries/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Controller.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Exceptions.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Hooks.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Input.php -------------------------------------------------------------------------------- /system/libraries/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Language.php -------------------------------------------------------------------------------- /system/libraries/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Loader.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Model.php -------------------------------------------------------------------------------- /system/libraries/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Output.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Router.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/URI.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Userauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Userauth.php -------------------------------------------------------------------------------- /system/libraries/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Validation.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/logs/index.html -------------------------------------------------------------------------------- /system/plugins/captcha_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/captcha_pi.php -------------------------------------------------------------------------------- /system/plugins/dompdf/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/LICENSE.LGPL -------------------------------------------------------------------------------- /system/plugins/dompdf/dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/dompdf.php -------------------------------------------------------------------------------- /system/plugins/dompdf/dompdf_config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/dompdf_config.inc.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/abstract_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/abstract_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/attribute_translator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/attribute_translator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/block_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/block_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/block_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/block_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/block_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/block_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/block_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/block_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/br_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/br_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/cached_pdf_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/cached_pdf_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/canvas.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/canvas.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/canvas_factory.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/canvas_factory.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/cellmap.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/cellmap.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/cpdf_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/cpdf_adapter.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/dompdf.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/dompdf.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/dompdf_exception.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/dompdf_exception.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/dompdf_internal_exception.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/dompdf_internal_exception.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/font_metrics.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/font_metrics.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/frame.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/frame.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/frame_factory.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/frame_factory.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/frame_tree.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/frame_tree.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/functions.inc.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/gd_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/gd_adapter.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/generated_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/generated_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/image_cache.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/image_cache.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/image_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/image_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/image_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/image_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/image_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/image_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/inline_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/inline_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/inline_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/inline_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/inline_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/inline_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/inline_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/inline_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/list_bullet_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/list_bullet_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/list_bullet_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/list_bullet_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/list_bullet_image_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/list_bullet_image_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/list_bullet_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/list_bullet_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/list_bullet_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/list_bullet_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/null_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/null_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/null_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/null_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/null_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/null_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/page_cache.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/page_cache.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/page_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/page_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/page_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/page_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/pdflib_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/pdflib_adapter.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/php_evaluator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/php_evaluator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/style.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/style.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/stylesheet.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/stylesheet.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_cell_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_cell_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_cell_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_cell_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_cell_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_cell_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_cell_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_cell_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_row_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_row_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_row_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_row_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_row_group_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_row_group_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_row_group_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_row_group_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/table_row_positioner.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/table_row_positioner.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/tcpdf_adapter.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/tcpdf_adapter.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/text_frame_decorator.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/text_frame_decorator.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/text_frame_reflower.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/text_frame_reflower.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/include/text_renderer.cls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/include/text_renderer.cls.php -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/class.ezpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/class.ezpdf.php -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/class.pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/class.pdf.php -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Courier-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Courier-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Courier-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Courier-BoldOblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Courier-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Courier-Oblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Courier.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Courier.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Helvetica-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Helvetica-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Helvetica-BoldOblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Helvetica-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Helvetica-Oblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Helvetica.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Symbol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Symbol.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Times-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Times-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Times-BoldItalic.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Times-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Times-Italic.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/Times-Roman.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/ZapfDingbats.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/ZapfDingbats.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/dompdf_font_family_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/dompdf_font_family_cache -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/dompdf_font_family_cache.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/dompdf_font_family_cache.dist -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Courier-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Courier-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Courier-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Courier-BoldOblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Courier-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Courier-Oblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Courier.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Courier.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Helvetica-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Helvetica-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Helvetica-BoldOblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Helvetica-BoldOblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Helvetica-Oblique.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Helvetica-Oblique.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Helvetica.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Helvetica.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Symbol.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Symbol.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Times-Bold.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Times-Bold.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Times-BoldItalic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Times-BoldItalic.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Times-Italic.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Times-Italic.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_Times-Roman.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_Times-Roman.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_ZapfDingbats.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_ZapfDingbats.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_a0100131.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_a0100131.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/fonts/php_a010013l.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/fonts/php_a010013l.afm -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/res/broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/res/broken_image.png -------------------------------------------------------------------------------- /system/plugins/dompdf/lib/res/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/lib/res/html.css -------------------------------------------------------------------------------- /system/plugins/dompdf/load_font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/dompdf/load_font.php -------------------------------------------------------------------------------- /system/plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/index.html -------------------------------------------------------------------------------- /system/plugins/js_calendar_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/js_calendar_pi.php -------------------------------------------------------------------------------- /system/plugins/to_excel_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/to_excel_pi.php -------------------------------------------------------------------------------- /system/plugins/to_pdf_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/to_pdf_pi.php -------------------------------------------------------------------------------- /system/plugins/to_xml_pi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/plugins/to_xml_pi.php -------------------------------------------------------------------------------- /system/scaffolding/Scaffolding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/Scaffolding.php -------------------------------------------------------------------------------- /system/scaffolding/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/images/background.jpg -------------------------------------------------------------------------------- /system/scaffolding/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/images/index.html -------------------------------------------------------------------------------- /system/scaffolding/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/images/logo.jpg -------------------------------------------------------------------------------- /system/scaffolding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/index.html -------------------------------------------------------------------------------- /system/scaffolding/views/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/add.php -------------------------------------------------------------------------------- /system/scaffolding/views/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/delete.php -------------------------------------------------------------------------------- /system/scaffolding/views/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/edit.php -------------------------------------------------------------------------------- /system/scaffolding/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/footer.php -------------------------------------------------------------------------------- /system/scaffolding/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/header.php -------------------------------------------------------------------------------- /system/scaffolding/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/index.html -------------------------------------------------------------------------------- /system/scaffolding/views/no_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/no_data.php -------------------------------------------------------------------------------- /system/scaffolding/views/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/stylesheet.css -------------------------------------------------------------------------------- /system/scaffolding/views/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/system/scaffolding/views/view.php -------------------------------------------------------------------------------- /templates/default/authentication.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/authentication.tpl -------------------------------------------------------------------------------- /templates/default/bill_select.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/bill_select.tpl -------------------------------------------------------------------------------- /templates/default/bill_select_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/bill_select_pos.tpl -------------------------------------------------------------------------------- /templates/default/closed_table.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/closed_table.tpl -------------------------------------------------------------------------------- /templates/default/closed_table_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/closed_table_pos.tpl -------------------------------------------------------------------------------- /templates/default/dailyincome.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/dailyincome.tpl -------------------------------------------------------------------------------- /templates/default/disconnect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/disconnect.tpl -------------------------------------------------------------------------------- /templates/default/dishlist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/dishlist.tpl -------------------------------------------------------------------------------- /templates/default/edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/edit.tpl -------------------------------------------------------------------------------- /templates/default/edit_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/edit_pos.tpl -------------------------------------------------------------------------------- /templates/default/modslist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/modslist.tpl -------------------------------------------------------------------------------- /templates/default/modslist_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/modslist_pos.tpl -------------------------------------------------------------------------------- /templates/default/orders.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/orders.tpl -------------------------------------------------------------------------------- /templates/default/orders_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/orders_pos.tpl -------------------------------------------------------------------------------- /templates/default/orders_takeaway.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/orders_takeaway.tpl -------------------------------------------------------------------------------- /templates/default/printing.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/printing.tpl -------------------------------------------------------------------------------- /templates/default/prints/bill.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/bill.tpl -------------------------------------------------------------------------------- /templates/default/prints/invoice.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/invoice.tpl -------------------------------------------------------------------------------- /templates/default/prints/priority_go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/priority_go.tpl -------------------------------------------------------------------------------- /templates/default/prints/receipt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/receipt.tpl -------------------------------------------------------------------------------- /templates/default/prints/ticket.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/ticket.tpl -------------------------------------------------------------------------------- /templates/default/prints/ticket_takeaway.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/prints/ticket_takeaway.tpl -------------------------------------------------------------------------------- /templates/default/question.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/question.tpl -------------------------------------------------------------------------------- /templates/default/standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/standard.tpl -------------------------------------------------------------------------------- /templates/default/tables.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/tables.tpl -------------------------------------------------------------------------------- /templates/default/tables_pos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/tables_pos.tpl -------------------------------------------------------------------------------- /templates/default/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/templates/default/template.tpl -------------------------------------------------------------------------------- /waiter/disconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/disconnect.php -------------------------------------------------------------------------------- /waiter/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/index.php -------------------------------------------------------------------------------- /waiter/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/orders.php -------------------------------------------------------------------------------- /waiter/tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/tables.php -------------------------------------------------------------------------------- /waiter/waiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/waiter.js -------------------------------------------------------------------------------- /waiter/waiter_start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjergjsheldija/smart-restaurant/HEAD/waiter/waiter_start.php --------------------------------------------------------------------------------