Repository: amirhamza05/Student-Management-System Branch: master Commit: 449397e35d42 Files: 696 Total size: 5.8 MB Directory structure: gitextract_zz2ag4kr/ ├── .htaccess ├── 404.php ├── README.md ├── account.php ├── account_action.php ├── add_result.php ├── add_result_action.php ├── add_student.php ├── api.php ├── attend.php ├── attend_action.php ├── barcode.php ├── batch_action.php ├── batch_list.php ├── chat.php ├── config/ │ ├── config.php │ ├── connect.php │ ├── db.php │ └── dbclass.php ├── dashboard_action.php ├── edit_id_card.php ├── exam.php ├── exam_action.php ├── exam_category_action.php ├── exam_list.php ├── exam_panel.php ├── exam_panel_action.php ├── export.php ├── id_card.php ├── id_card_action.php ├── index.php ├── install_action.php ├── install_system.php ├── layout/ │ ├── bubble.php │ ├── footer.php │ ├── header.php │ ├── header_lib.php │ ├── header_script.php │ ├── js/ │ │ ├── bubble.js │ │ └── nav_bar_script.js │ ├── layout.php │ ├── layout_style.php │ ├── loader.php │ ├── menu_button.php │ ├── modal_lib.php │ ├── nev_bar.php │ ├── page/ │ │ └── nav_bar_dropdown.php │ ├── side_bar.php │ └── site_script.js ├── login.php ├── login_action.php ├── logout.php ├── nav_bar_action.php ├── notice_action.php ├── notice_list.php ├── page/ │ ├── account/ │ │ ├── expence.php │ │ ├── income.php │ │ └── js/ │ │ ├── expence.js │ │ └── income.js │ ├── api/ │ │ └── api.php │ ├── attend/ │ │ ├── attend.php │ │ ├── extra.php │ │ └── js/ │ │ └── attend.js │ ├── batch/ │ │ ├── batch_list.php │ │ └── batch_script.js │ ├── chat/ │ │ ├── chat.php │ │ └── css/ │ │ └── style.css │ ├── editor/ │ │ ├── css/ │ │ │ └── sms_editor.css │ │ ├── js/ │ │ │ └── sms_editor.js │ │ └── sms_editor.php │ ├── exam/ │ │ ├── add_exam.php │ │ ├── exam_list.php │ │ ├── exam_result.php │ │ ├── js/ │ │ │ └── exam.js │ │ └── public_result.php │ ├── exam_page/ │ │ ├── exam_category/ │ │ │ ├── exam_category.php │ │ │ └── js/ │ │ │ └── script.js │ │ └── exam_panel/ │ │ ├── exam_panel.php │ │ └── js/ │ │ ├── add_result_script.js │ │ ├── exam_control.js │ │ └── exam_panel.js │ ├── export/ │ │ ├── excel.php │ │ └── style/ │ │ └── excel_table.css │ ├── id_card/ │ │ └── id_card_editor/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── id_card_editor.php │ │ └── js/ │ │ └── script.js │ ├── index/ │ │ ├── dashboard.php │ │ ├── dashboard_info.php │ │ ├── expence_list.php │ │ ├── js/ │ │ │ ├── dashboard.js │ │ │ └── graph.js │ │ ├── message_send_chart.php │ │ ├── site_activity.php │ │ ├── student_admit_graph.php │ │ └── style.css │ ├── install/ │ │ ├── install_system.php │ │ └── js/ │ │ └── install_system.js │ ├── login/ │ │ ├── js/ │ │ │ ├── ajax.js │ │ │ └── script.js │ │ ├── login.php │ │ └── style/ │ │ └── style.css │ ├── notice/ │ │ ├── add_notice.php │ │ ├── js/ │ │ │ └── notice.js │ │ ├── notice_list.php │ │ ├── notice_script/ │ │ │ ├── notice.js │ │ │ └── notice_action.php │ │ └── send_notice.php │ ├── payment/ │ │ ├── left_payment_option.php │ │ ├── payment.php │ │ └── right_payment_option.php │ ├── print/ │ │ └── id_print.php │ ├── print_page/ │ │ └── print_page.php │ ├── program/ │ │ ├── add_program.php │ │ ├── program_list.php │ │ └── program_script.js │ ├── report/ │ │ ├── attend_report.php │ │ ├── css/ │ │ │ └── payment_report.css │ │ ├── expence_report.php │ │ ├── income_report.php │ │ ├── js/ │ │ │ ├── attend_report.js │ │ │ ├── expence_report.js │ │ │ ├── income_report.js │ │ │ ├── payment_report.js │ │ │ └── profit_report.js │ │ ├── payment_report.php │ │ └── profit_report.php │ ├── result/ │ │ ├── add_result.js │ │ ├── add_result.php │ │ ├── js/ │ │ │ └── result.js │ │ ├── public_result.php │ │ ├── result.css │ │ ├── result.js │ │ └── result_list.php │ ├── setting/ │ │ ├── js/ │ │ │ └── setting.js │ │ └── setting.php │ ├── sms/ │ │ ├── js/ │ │ │ └── sms_script.js │ │ ├── pending_sms_list.php │ │ ├── sms_dashboard.php │ │ └── sms_google_graph_api.php │ ├── student/ │ │ ├── aaa.js │ │ ├── add_student/ │ │ │ └── add_student.php │ │ ├── add_student.php │ │ ├── index.php │ │ ├── js_script/ │ │ │ └── student_action.js │ │ ├── profile.css │ │ ├── profile.js │ │ ├── student_list/ │ │ │ ├── css/ │ │ │ │ └── style.css │ │ │ ├── js/ │ │ │ │ ├── payment_script.js │ │ │ │ └── script.js │ │ │ └── student_list.php │ │ ├── student_list.js │ │ ├── student_list.php │ │ ├── student_list1.php │ │ ├── student_profile/ │ │ │ ├── css/ │ │ │ │ ├── payment.css │ │ │ │ └── profile.css │ │ │ ├── js/ │ │ │ │ ├── info.js │ │ │ │ ├── payment.js │ │ │ │ ├── profile1.js │ │ │ │ ├── profile_data.js │ │ │ │ └── program.js │ │ │ ├── profile.php │ │ │ └── profile_lib.php │ │ ├── student_profile_panel.php │ │ └── text_editor.css │ ├── subject/ │ │ ├── add_subject.php │ │ ├── subject_list.php │ │ └── subject_script.js │ ├── template/ │ │ └── data_table.php │ ├── theme/ │ │ ├── add_theme.php │ │ ├── theme.php │ │ └── theme_list.php │ └── user/ │ ├── add_user.php │ ├── edit_profile.php │ ├── user_add_script.js │ ├── user_info.js │ ├── user_info.php │ ├── user_list/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── js/ │ │ │ └── user_list.js │ │ ├── side_bar.php │ │ └── user_list.php │ ├── user_list.php │ ├── user_list1.php │ ├── user_profile/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── js/ │ │ │ ├── user_profile.js │ │ │ └── user_top_bar_script.php │ │ ├── profile_side_bar.php │ │ ├── user_profile.php │ │ └── user_profile_ui.php │ └── user_profile.php ├── page_action/ │ ├── account/ │ │ ├── account.php │ │ ├── expence.php │ │ └── income.php │ ├── attend/ │ │ ├── attend_action.php │ │ └── attend_report.php │ ├── batch_page_action.php │ ├── dashboard/ │ │ └── dashboard_action.php │ ├── exam/ │ │ ├── exam_action.php │ │ ├── exam_category/ │ │ │ └── exam_category_action.php │ │ └── exam_panel/ │ │ └── exam_panel.php │ ├── exam_panel/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── exam_category_panel/ │ │ │ ├── admit_card.php │ │ │ ├── category_dashboard.php │ │ │ ├── exam_list.php │ │ │ └── include_file.php │ │ ├── exam_control_panel/ │ │ │ ├── add_result.php │ │ │ ├── exam_dashboard.php │ │ │ ├── include_file.php │ │ │ └── overview.php │ │ └── exam_panel.php │ ├── id_card/ │ │ └── edit_id_card/ │ │ └── edit_id_card_action.php │ ├── install/ │ │ └── install.php │ ├── nav_bar/ │ │ ├── chat_system.php │ │ ├── nav_bar.php │ │ ├── sql_editor.php │ │ └── theme.php │ ├── notice/ │ │ └── notice.php │ ├── program_page_action.php │ ├── report/ │ │ ├── attend_report.php │ │ ├── expense_report.php │ │ ├── income_report.php │ │ ├── payment_report.php │ │ ├── profit_report.php │ │ └── report.php │ ├── result/ │ │ ├── add_result.php │ │ └── result_action.php │ ├── setting/ │ │ └── setting.php │ ├── sms/ │ │ └── sms_action.php │ ├── student_list/ │ │ ├── basic_list.php │ │ ├── payment_option.php │ │ ├── payment_overview.php │ │ ├── program_overview.php │ │ ├── student_list.php │ │ ├── student_list_content.php │ │ └── student_payment_history.php │ ├── student_profile/ │ │ ├── info.php │ │ ├── payment.php │ │ ├── profile.php │ │ └── program.php │ ├── subject_page_action.php │ └── user/ │ ├── user.php │ ├── user_list.php │ ├── user_profile.php │ └── user_profile_body.php ├── payment.php ├── pending_sms_list.php ├── practice.php ├── print_page.php ├── profit_report.php ├── program_action.php ├── program_list.php ├── report.php ├── report_action.php ├── result.php ├── result_action.php ├── result_list.php ├── script/ │ ├── account/ │ │ └── account.php │ ├── api/ │ │ └── api.php │ ├── attendence/ │ │ └── attendence.php │ ├── batch/ │ │ └── batch.php │ ├── chat/ │ │ └── chat.php │ ├── contest/ │ │ └── contest.php │ ├── exam/ │ │ ├── exam.js │ │ ├── exam.php │ │ └── exam_category.php │ ├── graph/ │ │ └── graph.php │ ├── id_card/ │ │ ├── id.php │ │ ├── id_card.js │ │ └── id_card.php │ ├── install/ │ │ └── install.php │ ├── notice/ │ │ └── notice.php │ ├── payment/ │ │ ├── payment.js │ │ ├── payment.php │ │ └── set_payment.php │ ├── program/ │ │ ├── program.php │ │ └── program_form.php │ ├── report/ │ │ └── report.php │ ├── result/ │ │ └── result.php │ ├── setting/ │ │ └── setting.php │ ├── site_activity/ │ │ └── site_activity.php │ ├── site_content/ │ │ ├── calender.php │ │ ├── form.php │ │ ├── site_config.php │ │ └── site_content.php │ ├── sms/ │ │ └── sms.php │ ├── student/ │ │ ├── add_ajax.js │ │ ├── student.php │ │ └── student_edit.php │ ├── subject/ │ │ └── subject.php │ ├── template_class/ │ │ └── template_class.php │ ├── theme/ │ │ ├── index.php │ │ └── theme.php │ └── user/ │ └── user.php ├── setting.php ├── setting_action.php ├── sms_action.php ├── sms_dashboard.php ├── sql/ │ ├── install_sql.sql │ └── sql.sql ├── student/ │ ├── app/ │ │ ├── app.js │ │ └── lib/ │ │ └── angular-route.js │ ├── content/ │ │ ├── css/ │ │ │ └── style.css │ │ └── mdb/ │ │ ├── README.txt │ │ ├── css/ │ │ │ ├── addons/ │ │ │ │ ├── datatables-select.css │ │ │ │ └── datatables.css │ │ │ ├── bootstrap.css │ │ │ ├── mdb.css │ │ │ ├── mdb.lite.css │ │ │ ├── modules/ │ │ │ │ └── animations-extended.css │ │ │ └── style.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── addons/ │ │ │ │ ├── datatables-select.js │ │ │ │ └── datatables.js │ │ │ ├── bootstrap.js │ │ │ ├── mdb.js │ │ │ └── modules/ │ │ │ ├── chart.js │ │ │ ├── default-file-input.js │ │ │ ├── enhanced-modals.js │ │ │ ├── forms-free.js │ │ │ ├── jquery.easing.js │ │ │ ├── scrolling-navbar.js │ │ │ ├── velocity.js │ │ │ ├── waves.js │ │ │ └── wow.js │ │ └── scss/ │ │ ├── _custom-styles.scss │ │ ├── _custom-variables.scss │ │ ├── addons/ │ │ │ ├── _datatables-select.scss │ │ │ └── _datatables.scss │ │ ├── core/ │ │ │ ├── _colors.scss │ │ │ ├── _global.scss │ │ │ ├── _helpers.scss │ │ │ ├── _masks.scss │ │ │ ├── _mixins.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ ├── _waves.scss │ │ │ └── bootstrap/ │ │ │ ├── _functions.scss │ │ │ └── _variables.scss │ │ ├── free/ │ │ │ ├── _animations-basic.scss │ │ │ ├── _badges.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _carousels.scss │ │ │ ├── _depreciated.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _footers.scss │ │ │ ├── _forms.scss │ │ │ ├── _input-group.scss │ │ │ ├── _list-group.scss │ │ │ ├── _loader.scss │ │ │ ├── _modals.scss │ │ │ ├── _msc.scss │ │ │ ├── _navbars.scss │ │ │ ├── _pagination.scss │ │ │ ├── _steppers.scss │ │ │ ├── _switch.scss │ │ │ ├── _tables.scss │ │ │ └── modules/ │ │ │ └── animations-extended/ │ │ │ ├── _module.scss │ │ │ └── animations-extended.scss │ │ ├── mdb.lite.scss │ │ └── mdb.scss │ ├── controller/ │ │ └── controller.js │ ├── data/ │ │ └── dashboard_menu_list.html │ ├── example/ │ │ └── login/ │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── index.html │ │ ├── modules/ │ │ │ ├── authentication/ │ │ │ │ ├── controllers.js │ │ │ │ ├── services.js │ │ │ │ └── views/ │ │ │ │ └── login.html │ │ │ └── home/ │ │ │ ├── controllers.js │ │ │ └── views/ │ │ │ └── home.html │ │ ├── scripts/ │ │ │ └── app.js │ │ ├── src/ │ │ │ ├── app.js │ │ │ ├── directives/ │ │ │ │ └── form-helpers.js │ │ │ ├── error/ │ │ │ │ ├── error.js │ │ │ │ └── error.tpl.html │ │ │ ├── grandfather.js │ │ │ ├── home/ │ │ │ │ ├── home.js │ │ │ │ └── home.tpl.html │ │ │ ├── login-service.js │ │ │ ├── mockhttp.js │ │ │ ├── pages/ │ │ │ │ ├── admin.tpl.html │ │ │ │ ├── pages.js │ │ │ │ └── user.tpl.html │ │ │ ├── register/ │ │ │ │ ├── register.js │ │ │ │ ├── register.less │ │ │ │ └── register.tpl.html │ │ │ └── routing-config.js │ │ └── test/ │ │ ├── karma.conf.js │ │ └── spec/ │ │ └── login-service.js │ ├── index.html │ ├── test.html │ └── views/ │ ├── 404.html │ ├── batch_info.html │ ├── dashboard.html │ ├── header.html │ ├── home.html │ ├── login.html │ ├── program_info.html │ ├── result.html │ ├── send_sms.html │ ├── side_bar.html │ └── student_info.html ├── student.php ├── student_action.php ├── student_add_ajax.php ├── student_list.php ├── student_list_action.php ├── student_profile.php ├── student_profile_action.php ├── style/ │ ├── css/ │ │ ├── id_card.css │ │ ├── nav_bar.css │ │ └── table.css │ ├── images/ │ │ ├── blog/ │ │ │ └── images.txt │ │ ├── faces/ │ │ │ └── images.txt │ │ ├── gallery/ │ │ │ └── images.txt │ │ └── loading-icons/ │ │ └── images.txt │ ├── lib/ │ │ ├── bootstrap/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ └── bootstrap.css │ │ │ └── js/ │ │ │ └── bootstrap.js │ │ ├── custom/ │ │ │ └── custom.js │ │ ├── fancy-zoom/ │ │ │ ├── css/ │ │ │ │ └── fancyzoom.css │ │ │ ├── index.html │ │ │ └── src/ │ │ │ ├── fancyzoom.coffee │ │ │ └── fancyzoom.js │ │ ├── flot/ │ │ │ ├── API.txt │ │ │ ├── FAQ.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.txt │ │ │ ├── PLUGINS.txt │ │ │ ├── README.txt │ │ │ ├── examples/ │ │ │ │ ├── ajax.html │ │ │ │ ├── annotating.html │ │ │ │ ├── basic.html │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ ├── graph-types.html │ │ │ │ ├── image.html │ │ │ │ ├── index.html │ │ │ │ ├── interacting-axes.html │ │ │ │ ├── interacting.html │ │ │ │ ├── layout.css │ │ │ │ ├── multiple-axes.html │ │ │ │ ├── navigate.html │ │ │ │ ├── percentiles.html │ │ │ │ ├── pie.html │ │ │ │ ├── realtime.html │ │ │ │ ├── resize.html │ │ │ │ ├── selection.html │ │ │ │ ├── setting-options.html │ │ │ │ ├── stacking.html │ │ │ │ ├── symbols.html │ │ │ │ ├── thresholding.html │ │ │ │ ├── time.html │ │ │ │ ├── tracking.html │ │ │ │ ├── turning-series.html │ │ │ │ ├── visitors.html │ │ │ │ └── zooming.html │ │ │ ├── excanvas.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ └── jquery.js │ │ ├── font-awesome/ │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── less/ │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss/ │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar-1.6.4/ │ │ │ ├── changelog.txt │ │ │ ├── demos/ │ │ │ │ ├── agenda-views.html │ │ │ │ ├── basic-views.html │ │ │ │ ├── default.html │ │ │ │ ├── external-dragging.html │ │ │ │ ├── gcal.html │ │ │ │ ├── json-events.php │ │ │ │ ├── json.html │ │ │ │ ├── selectable.html │ │ │ │ └── theme.html │ │ │ ├── fullcalendar/ │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── fullcalendar.js │ │ │ │ ├── fullcalendar.print.css │ │ │ │ └── gcal.js │ │ │ └── license.txt │ │ └── jQuery-Knob/ │ │ ├── README.md │ │ ├── index.html │ │ ├── js/ │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ └── stylesheets/ │ ├── custom.css │ ├── elements.css │ ├── isotope.css │ ├── money_recept.css │ ├── premium.css │ ├── root/ │ │ ├── root1.css │ │ ├── root2.css │ │ └── root3.css │ └── theme.css ├── subject_action.php ├── subject_list.php ├── test.php ├── theme.php ├── theme_action.php ├── tool/ │ ├── School/ │ │ └── School id card/ │ │ ├── index.html │ │ └── style.css │ ├── chart_api/ │ │ └── canvas_api.js │ ├── color_picker/ │ │ ├── jscolor-example.html │ │ └── jscolor.js │ ├── date_picker/ │ │ ├── css/ │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ ├── bootstrap-datepicker3.css │ │ │ └── bootstrap-datepicker3.standalone.css │ │ └── js/ │ │ └── bootstrap-datepicker.js │ ├── datepickk-master/ │ │ └── datepickk-master/ │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist/ │ │ │ ├── datepickk.css │ │ │ ├── datepickk.js │ │ │ ├── doc.css │ │ │ └── doc.js │ │ ├── docs/ │ │ │ ├── _button.less │ │ │ ├── _colors.less │ │ │ ├── _grid.less │ │ │ ├── _variables.less │ │ │ ├── demo.js │ │ │ └── doc.less │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── css/ │ │ │ │ └── datepickk.less │ │ │ └── js/ │ │ │ └── datepickk.js │ │ └── webpack.config.js │ ├── pdf/ │ │ ├── FAQ.htm │ │ ├── changelog.htm │ │ ├── doc/ │ │ │ ├── __construct.htm │ │ │ ├── acceptpagebreak.htm │ │ │ ├── addfont.htm │ │ │ ├── addlink.htm │ │ │ ├── addpage.htm │ │ │ ├── aliasnbpages.htm │ │ │ ├── cell.htm │ │ │ ├── close.htm │ │ │ ├── error.htm │ │ │ ├── footer.htm │ │ │ ├── getpageheight.htm │ │ │ ├── getpagewidth.htm │ │ │ ├── getstringwidth.htm │ │ │ ├── getx.htm │ │ │ ├── gety.htm │ │ │ ├── header.htm │ │ │ ├── image.htm │ │ │ ├── index.htm │ │ │ ├── line.htm │ │ │ ├── link.htm │ │ │ ├── ln.htm │ │ │ ├── multicell.htm │ │ │ ├── output.htm │ │ │ ├── pageno.htm │ │ │ ├── rect.htm │ │ │ ├── setauthor.htm │ │ │ ├── setautopagebreak.htm │ │ │ ├── setcompression.htm │ │ │ ├── setcreator.htm │ │ │ ├── setdisplaymode.htm │ │ │ ├── setdrawcolor.htm │ │ │ ├── setfillcolor.htm │ │ │ ├── setfont.htm │ │ │ ├── setfontsize.htm │ │ │ ├── setkeywords.htm │ │ │ ├── setleftmargin.htm │ │ │ ├── setlinewidth.htm │ │ │ ├── setlink.htm │ │ │ ├── setmargins.htm │ │ │ ├── setrightmargin.htm │ │ │ ├── setsubject.htm │ │ │ ├── settextcolor.htm │ │ │ ├── settitle.htm │ │ │ ├── settopmargin.htm │ │ │ ├── setx.htm │ │ │ ├── setxy.htm │ │ │ ├── sety.htm │ │ │ ├── text.htm │ │ │ └── write.htm │ │ ├── font/ │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ └── zapfdingbats.php │ │ ├── fpdf.css │ │ ├── fpdf.php │ │ ├── install.txt │ │ ├── license.txt │ │ ├── makefont/ │ │ │ ├── makefont.php │ │ │ └── ttfparser.php │ │ └── tutorial/ │ │ ├── 20k_c1.txt │ │ ├── 20k_c2.txt │ │ ├── calligra.php │ │ ├── calligra.z │ │ ├── countries.txt │ │ ├── index.htm │ │ ├── makefont.php │ │ ├── tuto1.htm │ │ ├── tuto1.php │ │ ├── tuto2.htm │ │ ├── tuto2.php │ │ ├── tuto3.htm │ │ ├── tuto3.php │ │ ├── tuto4.htm │ │ ├── tuto4.php │ │ ├── tuto5.htm │ │ ├── tuto5.php │ │ ├── tuto6.htm │ │ ├── tuto6.php │ │ ├── tuto7.htm │ │ └── tuto7.php │ └── vendor/ │ └── vendor/ │ ├── autoload.php │ ├── composer/ │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ └── picqer/ │ └── php-barcode-generator/ │ ├── LICENSE.md │ ├── Readme.md │ ├── _gitignore.txt │ ├── _travis.yml │ ├── composer.json │ ├── generate-verified-files.php │ ├── phpunit.xml │ ├── src/ │ │ ├── BarcodeGenerator.php │ │ ├── BarcodeGeneratorHTML.php │ │ ├── BarcodeGeneratorJPG.php │ │ ├── BarcodeGeneratorPNG.php │ │ ├── BarcodeGeneratorSVG.php │ │ └── Exceptions/ │ │ ├── BarcodeException.php │ │ ├── InvalidCharacterException.php │ │ ├── InvalidCheckDigitException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidLengthException.php │ │ └── UnknownTypeException.php │ └── tests/ │ ├── BarcodeTest.php │ └── verified-files/ │ └── 081231723897-code128.html ├── upload/ │ └── index.php ├── user_action.php ├── user_info.php ├── user_list.php └── watermark.php ================================================ FILE CONTENTS ================================================ ================================================ FILE: .htaccess ================================================ ================================================ FILE: 404.php ================================================