├── .gitignore ├── .htaccess ├── .travis.yml ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── admin │ │ ├── curriculum_subject.php │ │ ├── index.html │ │ └── table.php │ ├── breadcrumbs.php │ ├── common │ │ ├── config.php │ │ └── user_groups.php │ ├── constants.php │ ├── development │ │ ├── autoload.php │ │ ├── config.php │ │ ├── database.php │ │ └── index.html │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── ion_auth.php │ ├── log.php │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── pagination.php │ ├── production │ │ ├── autoload.php │ │ ├── config.php │ │ ├── database.php │ │ └── index.html │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ ├── testing │ │ ├── autoload.php │ │ ├── config.php │ │ ├── database.php │ │ └── index.html │ └── user_agents.php ├── controllers │ ├── Auth.php │ ├── Courses.php │ ├── Create_course.php │ ├── Create_curriculum.php │ ├── Create_curriculum_subject.php │ ├── Create_education.php │ ├── Create_group.php │ ├── Create_requisite.php │ ├── Create_room.php │ ├── Create_student.php │ ├── Create_student_subject.php │ ├── Create_subject.php │ ├── Create_subject_offer.php │ ├── Create_user.php │ ├── Curriculums.php │ ├── Database.php │ ├── Deactivate.php │ ├── Edit_group.php │ ├── Edit_room.php │ ├── Edit_student.php │ ├── Edit_subject.php │ ├── Edit_user.php │ ├── Educations.php │ ├── Groups.php │ ├── Home.php │ ├── Last_logins.php │ ├── Log.php │ ├── Open_enrollment.php │ ├── Permissions.php │ ├── Report_info.php │ ├── Rooms.php │ ├── Set_curriculum_enable.php │ ├── Students.php │ ├── Subject_offers.php │ ├── Subjects.php │ ├── Users.php │ └── index.html ├── core │ ├── MY_Config.php │ ├── MY_Controller.php │ ├── MY_Lang.php │ ├── MY_Model.php │ └── index.html ├── helpers │ ├── MY_date_helper.php │ ├── MY_form_helper.php │ ├── MY_html_helper.php │ ├── MY_inflector_helper.php │ ├── MY_language_helper.php │ ├── MY_number_helper.php │ ├── MY_url_helper.php │ ├── combobox_helper.php │ ├── day_helper.php │ ├── icon_helper.php │ ├── index.html │ ├── month_helper.php │ ├── mymodel_helper.php │ ├── navigation_helper.php │ ├── permission_helper.php │ ├── school_helper.php │ ├── session_helper.php │ ├── student_helper.php │ ├── time_helper.php │ └── validator_helper.php ├── hooks │ ├── Check_access.php │ ├── compress.php │ └── index.html ├── index.html ├── language │ ├── cebuano │ │ ├── auth_lang.php │ │ ├── auth_lang_1.php │ │ ├── auth_lang_2.php │ │ ├── calendar_lang.php │ │ ├── ci_capstone │ │ │ ├── ci_breadcrumnd_lang.php │ │ │ ├── ci_change_language_lang.php │ │ │ ├── ci_common_lang.php │ │ │ ├── ci_courses_lang.php │ │ │ ├── ci_curriculum_lang.php │ │ │ ├── ci_curriculum_subjects_lang.php │ │ │ ├── ci_db_lang.php │ │ │ ├── ci_dean_course_lang.php │ │ │ ├── ci_educations_lang.php │ │ │ ├── ci_enroll_subjects_lang.php │ │ │ ├── ci_enrollment_lang.php │ │ │ ├── ci_enrollment_status_lang.php │ │ │ ├── ci_error_lang.php │ │ │ ├── ci_excel_lang.php │ │ │ ├── ci_last_login_lang.php │ │ │ ├── ci_last_logins_lang.php │ │ │ ├── ci_pagination_lang.php │ │ │ ├── ci_permission_lang.php │ │ │ ├── ci_print_lang.php │ │ │ ├── ci_report_info_lang.php │ │ │ ├── ci_requisite_lang.php │ │ │ ├── ci_rooms_lang.php │ │ │ ├── ci_semester_lang.php │ │ │ ├── ci_students_lang.php │ │ │ ├── ci_subject_offers_lang.php │ │ │ ├── ci_subjects_lang.php │ │ │ ├── ci_unit_lang.php │ │ │ └── ci_validation_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── index_1.html │ │ ├── ion_auth_lang.php │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ ├── english │ │ ├── auth_lang.php │ │ ├── ci_capstone │ │ │ ├── ci_breadcrumnd_lang.php │ │ │ ├── ci_change_language_lang.php │ │ │ ├── ci_common_lang.php │ │ │ ├── ci_courses_lang.php │ │ │ ├── ci_curriculum_lang.php │ │ │ ├── ci_curriculum_subjects_lang.php │ │ │ ├── ci_db_lang.php │ │ │ ├── ci_dean_course_lang.php │ │ │ ├── ci_educations_lang.php │ │ │ ├── ci_enroll_subjects_lang.php │ │ │ ├── ci_enrollment_lang.php │ │ │ ├── ci_enrollment_status_lang.php │ │ │ ├── ci_error_lang.php │ │ │ ├── ci_excel_lang.php │ │ │ ├── ci_last_login_lang.php │ │ │ ├── ci_last_logins_lang.php │ │ │ ├── ci_pagination_lang.php │ │ │ ├── ci_permission_lang.php │ │ │ ├── ci_print_lang.php │ │ │ ├── ci_report_info_lang.php │ │ │ ├── ci_requisite_lang.php │ │ │ ├── ci_rooms_lang.php │ │ │ ├── ci_semester_lang.php │ │ │ ├── ci_students_lang.php │ │ │ ├── ci_subject_offers_lang.php │ │ │ ├── ci_subjects_lang.php │ │ │ ├── ci_unit_lang.php │ │ │ └── ci_validation_lang.php │ │ ├── ci_ion_auth_lang.php │ │ ├── index.html │ │ └── ion_auth_lang.php │ ├── filipino │ │ ├── auth_lang.php │ │ ├── calendar_lang.php │ │ ├── ci_capstone │ │ │ ├── ci_breadcrumnd_lang.php │ │ │ ├── ci_change_language_lang.php │ │ │ ├── ci_common_lang.php │ │ │ ├── ci_courses_lang.php │ │ │ ├── ci_db_lang.php │ │ │ ├── ci_educations_lang.php │ │ │ ├── ci_error_lang.php │ │ │ ├── ci_excel_lang.php │ │ │ ├── ci_last_login_lang.php │ │ │ ├── ci_last_logins_lang.php │ │ │ ├── ci_permission_lang.php │ │ │ ├── ci_rooms_lang.php │ │ │ ├── ci_students_lang.php │ │ │ ├── ci_subject_offers_lang.php │ │ │ ├── ci_subjects_lang.php │ │ │ └── ci_validation_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── ion_auth_lang.php │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html ├── libraries │ ├── Age.php │ ├── Bcrypt.php │ ├── Breadcrumbs.php │ ├── Excel.php │ ├── Ion_auth.php │ ├── Lib_log.php │ ├── MY_Form_validation.php │ ├── MY_Pagination.php │ ├── MY_Upload.php │ ├── Pdf.php │ ├── Permission.php │ ├── School_id.php │ ├── Student.php │ ├── Subject_offer_validation.php │ └── index.html ├── logs │ └── index.html ├── migrations │ ├── 20170205022929_create_ion_auth.php │ ├── 20170205022930_course.php │ ├── 20170205022932_logs.php │ ├── 20170205022940_students.php │ ├── 20170207202545_subjects.php │ ├── 20170207202546_subject_offers.php │ ├── 20170207202547_subject_offer_line.php │ ├── 20170208133111_students_subjects.php │ ├── 20170210003726_educations.php │ ├── 20170210005726_rooms.php │ ├── 20170210005727_users_last_login.php │ ├── 20170212005729_enrollments.php │ ├── 20170214155628_permission.php │ ├── 20170214195628_controller.php │ ├── 20170301160830_curriculum.php │ ├── 20170301160900_curriculum_subjects.php │ ├── 20170316191619_requisite.php │ ├── 20170316191620_enrollment_status.php │ ├── 20170411093534_report_info.php │ ├── 20170413094649_dean_course.php │ ├── 20170420215127_alter_user_and_group.php │ ├── 20170420223732_sample_data.php │ ├── 20170502190557_unit.php │ └── index.html ├── models │ ├── Controller_model.php │ ├── Course_model.php │ ├── Curriculum_model.php │ ├── Curriculum_subject_model.php │ ├── Dean_course_model.php │ ├── Education_model.php │ ├── Enrollment_model.php │ ├── Enrollment_status_model.php │ ├── Group_model.php │ ├── Ion_auth_model.php │ ├── Log_model.php │ ├── Permission_model.php │ ├── Report_info_model.php │ ├── Requisites_model.php │ ├── Room_model.php │ ├── Student_model.php │ ├── Students_subjects_model.php │ ├── Subject_model.php │ ├── Subject_offer_line_model.php │ ├── Subject_offer_model.php │ ├── Unit_model.php │ ├── User_model.php │ ├── Users_last_login_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── admin │ ├── _templates │ │ ├── button_view.php │ │ ├── create_curriculum_subject │ │ │ └── form.php │ │ ├── create_subject_offer │ │ │ └── conflict_data.php │ │ ├── curriculums │ │ │ └── curriculum_information.php │ │ ├── footer.php │ │ ├── form.php │ │ ├── header.php │ │ ├── home │ │ │ ├── dashboard_ctrl.php │ │ │ ├── index.html │ │ │ ├── student_course_count.php │ │ │ └── user_count.php │ │ ├── index.html │ │ ├── permission │ │ │ ├── edit.php │ │ │ └── invalid.php │ │ ├── search.php │ │ ├── students │ │ │ ├── print.php │ │ │ └── view.php │ │ └── table.php │ ├── courses.php │ ├── create_course.php │ ├── create_curriculum.php │ ├── create_curriculum_subject.php │ ├── create_education.php │ ├── create_group.php │ ├── create_requisite.php │ ├── create_room.php │ ├── create_student.php │ ├── create_student_subject.php │ ├── create_subject.php │ ├── create_subject_offer.php │ ├── create_user.php │ ├── curriculums.php │ ├── database.php │ ├── deactivate_user.php │ ├── edit_group.php │ ├── edit_room.php │ ├── edit_student.php │ ├── edit_user.php │ ├── educations.php │ ├── groups.php │ ├── home.php │ ├── index.html │ ├── last_logins.php │ ├── log.php │ ├── login.php │ ├── open_enrollment.php │ ├── permission.php │ ├── report_info.php │ ├── reset_password.php │ ├── rooms.php │ ├── students.php │ ├── subject_offers.php │ ├── subjects.php │ └── users.php │ ├── auth │ ├── change_password.php │ ├── create_group.php │ ├── create_user.php │ ├── deactivate_user.php │ ├── edit_group.php │ ├── edit_user.php │ ├── email │ │ ├── activate.tpl.php │ │ ├── forgot_password.tpl.php │ │ ├── index.html │ │ └── new_password.tpl.php │ ├── forgot_password.php │ ├── index.html │ ├── index2.php │ ├── login.php │ ├── reset_password.php │ └── signup.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ └── template.php ├── assets ├── custom_ccs │ └── print_style.css ├── custom_js │ └── flashdata_fade.js ├── framework │ ├── bootstrap │ │ ├── admin │ │ │ ├── index.html │ │ │ └── matrix-admin-package │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-wysihtml5.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── colorpicker.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── jquery.easy-pie-chart.css │ │ │ │ ├── jquery.gritter.css │ │ │ │ ├── matrix-login.css │ │ │ │ ├── matrix-media.css │ │ │ │ ├── matrix-style.css │ │ │ │ ├── select2.css │ │ │ │ └── uniform.css │ │ │ │ ├── font-awesome │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.css │ │ │ │ ├── font │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── img │ │ │ │ ├── Thumbs.db │ │ │ │ ├── breadcrumb.png │ │ │ │ ├── demo │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── av1.jpg │ │ │ │ │ ├── av2.jpg │ │ │ │ │ ├── av3.jpg │ │ │ │ │ ├── av4.jpg │ │ │ │ │ ├── av5.jpg │ │ │ │ │ ├── demo-image1.jpg │ │ │ │ │ ├── demo-image2.jpg │ │ │ │ │ ├── demo-image3.jpg │ │ │ │ │ └── envelope.png │ │ │ │ ├── gallery │ │ │ │ │ ├── imgbox1.jpg │ │ │ │ │ ├── imgbox2.jpg │ │ │ │ │ ├── imgbox3.jpg │ │ │ │ │ ├── imgbox4.jpg │ │ │ │ │ └── imgbox5.jpg │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── gritter.png │ │ │ │ ├── hue.png │ │ │ │ ├── icons │ │ │ │ │ ├── 16 │ │ │ │ │ │ ├── book.png │ │ │ │ │ │ ├── cabinet.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── client.png │ │ │ │ │ │ ├── database.png │ │ │ │ │ │ ├── download.png │ │ │ │ │ │ ├── graph.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── mail.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── people.png │ │ │ │ │ │ ├── piechart.png │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ ├── shopping-bag.png │ │ │ │ │ │ ├── survey.png │ │ │ │ │ │ ├── tag.png │ │ │ │ │ │ ├── user.png │ │ │ │ │ │ ├── wallet.png │ │ │ │ │ │ └── web.png │ │ │ │ │ └── 32 │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── book.png │ │ │ │ │ │ ├── cabinet.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── client.png │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ ├── database.png │ │ │ │ │ │ ├── download.png │ │ │ │ │ │ ├── graph.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── mail.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── people.png │ │ │ │ │ │ ├── piechart.png │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ ├── shopping-bag.png │ │ │ │ │ │ ├── survey.png │ │ │ │ │ │ ├── tag.png │ │ │ │ │ │ ├── user.png │ │ │ │ │ │ ├── wallet.png │ │ │ │ │ │ └── web.png │ │ │ │ ├── larrow.png │ │ │ │ ├── line.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu-active.png │ │ │ │ ├── rarrow.png │ │ │ │ ├── saturation.png │ │ │ │ ├── select2.png │ │ │ │ ├── spinner.gif │ │ │ │ └── sprite.png │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ ├── bootstrap-wysihtml5.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── fullcalendar.min.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ ├── jquery.easy-pie-chart.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.gritter.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.peity.min.js │ │ │ │ ├── jquery.ui.custom.js │ │ │ │ ├── jquery.uniform.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.wizard.js │ │ │ │ ├── masked.js │ │ │ │ ├── matrix.calendar.js │ │ │ │ ├── matrix.charts.js │ │ │ │ ├── matrix.chat.js │ │ │ │ ├── matrix.dashboard.js │ │ │ │ ├── matrix.form_common.js │ │ │ │ ├── matrix.form_validation.js │ │ │ │ ├── matrix.interface.js │ │ │ │ ├── matrix.js │ │ │ │ ├── matrix.login.js │ │ │ │ ├── matrix.popover.js │ │ │ │ ├── matrix.tables.js │ │ │ │ ├── matrix.wizard.js │ │ │ │ ├── select2.min.js │ │ │ │ └── wysihtml5-0.3.0.js │ │ └── index.html │ └── index.html ├── images │ ├── favicon.ico │ ├── index.html │ └── students │ │ ├── index.html │ │ └── test │ │ ├── four.jpg │ │ ├── index.html │ │ ├── one.jpg │ │ ├── three.jpeg │ │ └── two.jpg ├── index.html └── libraries │ └── dompdf │ ├── CONTRIBUTING.md │ ├── LICENSE.LGPL │ ├── README.md │ ├── VERSION │ ├── autoload.inc.php │ ├── composer.json │ ├── lib │ ├── Cpdf.php │ ├── fonts │ │ ├── Courier-Bold.afm │ │ ├── Courier-BoldOblique.afm │ │ ├── Courier-Oblique.afm │ │ ├── Courier.afm │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-Bold.ufm │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-BoldOblique.ufm │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans-Oblique.ufm │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSans.ufm │ │ ├── DejaVuSans.ufm.php │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSansMono-Bold.ufm │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSansMono-Oblique.ufm │ │ ├── DejaVuSansMono.ttf │ │ ├── DejaVuSansMono.ufm │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-Bold.ufm │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── DejaVuSerif-Italic.ufm │ │ ├── DejaVuSerif.ttf │ │ ├── DejaVuSerif.ufm │ │ ├── Helvetica-Bold.afm │ │ ├── Helvetica-BoldOblique.afm │ │ ├── Helvetica-Oblique.afm │ │ ├── Helvetica.afm │ │ ├── Helvetica.afm.php │ │ ├── Symbol.afm │ │ ├── Times-Bold.afm │ │ ├── Times-Bold.afm.php │ │ ├── Times-BoldItalic.afm │ │ ├── Times-Italic.afm │ │ ├── Times-Roman.afm │ │ ├── Times-Roman.afm.php │ │ ├── ZapfDingbats.afm │ │ ├── dompdf_font_family_cache.dist.php │ │ └── mustRead.html │ ├── html5lib │ │ ├── Data.php │ │ ├── InputStream.php │ │ ├── Parser.php │ │ ├── Tokenizer.php │ │ ├── TreeBuilder.php │ │ └── named-character-references.ser │ └── res │ │ ├── broken_image.png │ │ └── html.css │ ├── phpcs.xml │ └── src │ ├── Adapter │ ├── CPDF.php │ ├── GD.php │ └── PDFLib.php │ ├── Autoloader.php │ ├── Canvas.php │ ├── CanvasFactory.php │ ├── Cellmap.php │ ├── Css │ ├── AttributeTranslator.php │ ├── Color.php │ ├── Style.php │ └── Stylesheet.php │ ├── Dompdf.php │ ├── Exception.php │ ├── Exception │ └── ImageException.php │ ├── FontMetrics.php │ ├── Frame.php │ ├── Frame │ ├── Factory.php │ ├── FrameList.php │ ├── FrameListIterator.php │ ├── FrameTree.php │ ├── FrameTreeIterator.php │ └── FrameTreeList.php │ ├── FrameDecorator │ ├── AbstractFrameDecorator.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── ListBulletImage.php │ ├── NullFrameDecorator.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── FrameReflower │ ├── AbstractFrameReflower.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullFrameReflower.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── Helpers.php │ ├── Image │ └── Cache.php │ ├── JavascriptEmbedder.php │ ├── LineBox.php │ ├── Options.php │ ├── PhpEvaluator.php │ ├── Positioner │ ├── Absolute.php │ ├── AbstractPositioner.php │ ├── Block.php │ ├── Fixed.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullPositioner.php │ ├── TableCell.php │ └── TableRow.php │ ├── Renderer.php │ └── Renderer │ ├── AbstractRenderer.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── TableCell.php │ ├── TableRowGroup.php │ └── Text.php ├── composer.json ├── contributing.md ├── index.php ├── license.txt ├── maintanance.php ├── nbproject ├── private │ └── private.properties ├── project.properties └── project.xml ├── sample_data └── ci_capstone.sql └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | 11 | user_guide_src/build/* 12 | user_guide_src/cilexer/build/* 13 | user_guide_src/cilexer/dist/* 14 | user_guide_src/cilexer/pycilexer.egg-info/* 15 | /vendor/ 16 | 17 | # IDE Files 18 | #------------------------- 19 | /nbproject/ 20 | .idea/* 21 | 22 | ## Sublime Text cache files 23 | *.tmlanguage.cache 24 | *.tmPreferences.cache 25 | *.stTheme.cache 26 | *.sublime-workspace 27 | *.sublime-project 28 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.5 4 | - 5.4 5 | - hhvm 6 | script: phpunit Test.php 7 | 8 | branches: 9 | only: 10 | - testing 11 | 12 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/admin/curriculum_subject.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/admin/table.php: -------------------------------------------------------------------------------- 1 | '; 7 | $config['table_open_bordered'] = ''; 8 | $config['table_open_invoice'] = '
'; 9 | -------------------------------------------------------------------------------- /application/config/breadcrumbs.php: -------------------------------------------------------------------------------- 1 | '; 9 | $config['breadcrumb_close'] = ''; 10 | 11 | $config['breadcrumb_el_open'] = ''; 12 | $config['breadcrumb_el_open_extra'] = array('class' => 'tip-bottom'); 13 | $config['breadcrumb_el_close'] = ''; 14 | 15 | $config['breadcrumb_el_first'] = ' '; 16 | $config['breadcrumb_el_first_extra'] = array('title' => lang('breadcrumd_go_to') . ' ' . lang('home_label'), 'class' => 'tip-bottom'); 17 | 18 | $config['breadcrumb_el_last_open'] = ''; 19 | $config['breadcrumb_el_last_open_extra'] = array('class' => 'current tip-bottom'); 20 | $config['breadcrumb_el_last_close'] = ''; 21 | -------------------------------------------------------------------------------- /application/config/common/user_groups.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | '', 18 | 'function' => 'compress', 19 | 'filename' => 'compress.php', 20 | 'filepath' => 'hooks' 21 | ); 22 | 23 | 24 | 25 | /** 26 | * 27 | * 28 | * While you could create your own controller 29 | * like a MY_Controller that derives from the CI_Controller, 30 | * this is really not what it is meant for. 31 | * 32 | * CodeIgniter supports something called hooks, 33 | * which are scripts that are run at specific moments, 34 | * much like events. There exists a hook that is called every time any controller is called, 35 | * without you having to implement anything in the controller itself. 36 | * @reference: http://stackoverflow.com/a/34451507/3405221 37 | */ 38 | $hook['post_controller_constructor'][] = array( 39 | "class" => "Check_access", 40 | "function" => "validate", 41 | "filename" => "Check_access.php", 42 | "filepath" => "hooks" 43 | ); 44 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/log.php: -------------------------------------------------------------------------------- 1 | 9 | * @license BSD License 10 | * @link http://blog.wu-boy.com/ 11 | * @since Version 1.0 12 | */ 13 | defined('BASEPATH') OR exit('No direct script access allowed'); 14 | 15 | /* 16 | * Database log table name 17 | */ 18 | $config['log_table_name'] = 'logs'; 19 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/production/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Config.php: -------------------------------------------------------------------------------- 1 | 10 | * @version 1.1.1 11 | * @based on Internationalization (i18n) library for CodeIgniter 2 by Jerome Jaglale (http://jeromejaglale.com/doc/php/codeigniter_i18n) 12 | * @link https://github.com/waqleh/CodeIgniter-Language-In-URL-Internationalization- 13 | */ 14 | 15 | class MY_Config extends CI_Config { 16 | 17 | function site_url($uri = '', $protocol = NULL) { 18 | if (is_array($uri)) { 19 | $uri = implode('/', $uri); 20 | } 21 | 22 | if (class_exists('CI_Controller')) { 23 | $CI = & get_instance(); 24 | $uri = $CI->lang->localized($uri); 25 | } 26 | 27 | return parent::site_url($uri); 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/MY_inflector_helper.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | function dash($str) 17 | { 18 | return preg_replace('/[\s]+/', '-', trim(MB_ENABLED ? mb_strtolower($str) : strtolower($str))); 19 | } 20 | 21 | } 22 | 23 | // -------------------------------------------------------------------- 24 | 25 | if ( ! function_exists('inflector_int_unit')) 26 | { 27 | 28 | function inflector_int_unit($int_value, $unit) 29 | { 30 | $int_value = (int) $int_value; 31 | if ($int_value === 0) 32 | { 33 | return '--'; 34 | } 35 | 36 | if ($int_value > 1) 37 | { 38 | $unit = plural($unit); 39 | } 40 | 41 | return $int_value . ' ' . $unit; 42 | } 43 | 44 | } -------------------------------------------------------------------------------- /application/helpers/combobox_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/mymodel_helper.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | function remove_empty_before_write($data) 15 | { 16 | /** 17 | * temporary 18 | */ 19 | return $data; 20 | $new_data = array(); 21 | if ( ! is_array($data)) 22 | { 23 | $data = array($data); 24 | } 25 | foreach ($data as $value) 26 | { 27 | if ((string) $value === '') 28 | { 29 | continue; #skip 30 | } 31 | $new_data[] = $value; 32 | }print_r($new_data); 33 | return $new_data; 34 | } 35 | 36 | } -------------------------------------------------------------------------------- /application/helpers/student_helper.php: -------------------------------------------------------------------------------- 1 | ( ! $lang) ? lang('student_civil_status_single') : 'student_civil_status_single', 15 | 'married' => ( ! $lang) ? lang('student_civil_status_married') : 'student_civil_status_married', 16 | 'seperated' => ( ! $lang) ? lang('student_civil_status_seperated') : 'student_civil_status_seperated', 17 | 'widower' => ( ! $lang) ? lang('student_civil_status_widower') : 'student_civil_status_widower' 18 | ); 19 | if ($index) 20 | { 21 | if (array_key_exists($index, $civil_status)) 22 | { 23 | return $civil_status[$index]; 24 | } 25 | return NULL; 26 | } 27 | if (trim($index) == '' && ! is_bool($index)) 28 | { 29 | 30 | return NULL; 31 | } 32 | return $civil_status; 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /application/hooks/compress.php: -------------------------------------------------------------------------------- 1 | output->get_output(); 7 | 8 | $CI->output->set_output(_compress($buffer)); 9 | $CI->output->_display(); 10 | 11 | function _compress($buffer) 12 | { 13 | if (ENVIRONMENT === 'development') 14 | { 15 | return $buffer; 16 | } 17 | $search = array( 18 | '/\>[^\S ]+/s', 19 | '/[^\S ]+\#s', 22 | '/\>(\s)+\', 27 | '<', 28 | '\\1', 29 | "//<![CDATA[\n" . '\1' . "\n//]]>", 30 | '><' 31 | ); 32 | 33 | return preg_replace($search, $replace, $buffer); 34 | } 35 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/cebuano/ci_capstone/ci_breadcrumnd_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/cebuano/index_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/cebuano/migration_lang.php: -------------------------------------------------------------------------------- 1 | lang->load('ci_ion_auth', TRUE); 13 | * then call like this - $this->lang->line('username_label', 'ci_ion_auth'); 14 | * 15 | * to prevent collision 16 | * 17 | * @author Lloric Mayuga Garcia 18 | */ 19 | defined('BASEPATH') or exit('Direct Script is not allowed'); 20 | 21 | 22 | $lang['username_label'] = 'Username'; 23 | $lang['gorup_description_label'] = 'Description'; 24 | $lang['email_label'] = 'Email'; 25 | 26 | 27 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/filipino/ci_capstone/ci_breadcrumnd_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/filipino/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/Pdf.php: -------------------------------------------------------------------------------- 1 | dompdf = new Dompdf(); 18 | // } 19 | // 20 | // public function print_now($data, $orientation = 'portrait') 21 | // { 22 | // $this->dompdf->loadHtml($data); 23 | // 24 | // // (Optional) Setup the paper size and orientation 25 | // $this->dompdf->setPaper('A4', $orientation); 26 | // 27 | // // Render the HTML as PDF 28 | // $this->dompdf->render(); 29 | // 30 | // // Output the generated PDF to Browser 31 | // $this->dompdf->stream(); 32 | // } 33 | // 34 | //} 35 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/migrations/20170316191620_enrollment_status.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class Migration_Enrollment_status extends CI_Migration 9 | { 10 | 11 | 12 | const CI_DB_TABLE = 'enrollment_status'; 13 | 14 | public function __construct($config = array()) 15 | { 16 | parent::__construct($config); 17 | } 18 | 19 | public function up() 20 | { 21 | //$this->down(); 22 | $fields = array( 23 | 'status' => array( 24 | 'type' => 'TINYINT', 25 | 'constraint' => '1', 26 | 'unsigned' => TRUE, 27 | 'null' => FAlSE 28 | ), 29 | //------------------------------------ 30 | 'created_at' => array( 31 | 'type' => 'INT', 32 | 'constraint' => '11', 33 | 'null' => FALSE 34 | ), 35 | 'created_user_id' => array( 36 | 'type' => 'INT', 37 | 'constraint' => '11', 38 | 'unsigned' => TRUE, 39 | 'null' => FALSE 40 | ) 41 | ); 42 | 43 | $this->dbforge->add_field($fields); 44 | $this->dbforge->create_table(self::CI_DB_TABLE, TRUE); 45 | } 46 | 47 | public function down() 48 | { 49 | $this->dbforge->drop_table(self::CI_DB_TABLE, TRUE); 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /application/migrations/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/Log_model.php: -------------------------------------------------------------------------------- 1 | table = 'logs'; 11 | $this->primary_key = 'id'; 12 | 13 | $this->_config(); 14 | 15 | parent::__construct(); 16 | } 17 | 18 | private function _config() 19 | { 20 | $this->timestamps = TRUE; //(bool) $this->config->item('my_model_timestamps'); 21 | $this->return_as = 'object'; //$this->config->item('my_model_return_as'); 22 | $this->timestamps_format = 'timestamp'; //$this->config->item('my_model_timestamps_format'); 23 | 24 | 25 | $this->cache_driver = 'file'; //$this->config->item('my_model_cache_driver'); 26 | $this->cache_prefix = 'cicapstone'; //$this->config->item('my_model_cache_prefix'); 27 | /** 28 | * some of field is not required, so remove it in array when no value, in inside the *->from_form()->insert() in core MY_Model, 29 | */ 30 | // $this->remove_empty_before_write = TRUE;//(bool) $this->config->item('my_model_remove_empty_before_write'); 31 | $this->delete_cache_on_save = TRUE; //(bool) $this->config->item('my_model_delete_cache_on_save'); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/_templates/button_view.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 |
8 |
-------------------------------------------------------------------------------- /application/views/admin/_templates/create_subject_offer/conflict_data.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | 17 |
18 |
19 |
20 | '; 24 | echo $pagination; 25 | echo '
'; 26 | } 27 | ?> 28 |
29 | 30 | 31 | 4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
Effective Year
13 |

curriculum_effective_school_year; ?>

14 |
Course
15 |

course->course_code; ?>

16 |
Description
17 |

curriculum_description; ?>

18 |
Status
19 |

curriculum_status) ? 'Active' : 'Inactive'; ?>

20 |
21 |
22 |
23 |
24 |
-------------------------------------------------------------------------------- /application/views/admin/_templates/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 17 |
18 | 19 | 20 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /application/views/admin/_templates/home/dashboard_ctrl.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 22 |
23 |
24 | -------------------------------------------------------------------------------- /application/views/admin/_templates/home/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/_templates/home/student_course_count.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/admin/_templates/home/user_count.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /application/views/admin/_templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/_templates/permission/invalid.php: -------------------------------------------------------------------------------- 1 | ' . lang('only_admin_user_group_allowed_current_controller') . '

'; 6 | 7 | echo '
"' . $controller_obj->controller_name . '"
'; 8 | -------------------------------------------------------------------------------- /application/views/admin/_templates/search.php: -------------------------------------------------------------------------------- 1 | uri->segment($this->config->item('segment_controller')))) 6 | { 7 | case 'subjects': 8 | $search_n_session_key = 'search-subject'; 9 | $action = 'subjects'; 10 | $placeholder = 'Search Subject...'; 11 | $title = 'Search Subject'; 12 | break; 13 | case 'curriculums' : 14 | $search_n_session_key = 'search-curriculum'; 15 | $action = 'curriculums'; 16 | $placeholder = 'Search Curriculum...'; 17 | $title = 'Search Curriculum'; 18 | break; 19 | default : 20 | $search_n_session_key = 'search-student'; 21 | $action = 'students'; 22 | $placeholder = 'Search Student...'; 23 | $title = 'Search Student'; 24 | break; 25 | } 26 | 27 | 28 | $serch_value = ( $this->input->get($search_n_session_key)) ? $this->input->get($search_n_session_key) : $this->session->userdata($search_n_session_key); 29 | echo form_open($action, array('method' => 'get')); 30 | echo form_input($search_n_session_key, $serch_value, array('placeholder' => $placeholder)); 31 | echo ''; 32 | echo form_close(); 33 | 34 | 35 | 36 | unset($placeholder); 37 | unset($title); 38 | unset($serch_value); 39 | unset($search_n_session_key); 40 | unset($action); 41 | -------------------------------------------------------------------------------- /application/views/admin/_templates/table.php: -------------------------------------------------------------------------------- 1 | 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | 15 |
16 |
17 |
18 | '; 25 | echo $pagination; 26 | echo '
'; 27 | } 28 | if ($bootstrap_output): 29 | ?> 30 |
31 | 32 |
'; 12 | echo $student_subject_form; 13 | ?> 14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | $v) 23 | { 24 | echo input_bootstrap($v); 25 | } 26 | ?> 27 |
28 |
29 |
30 |
31 |
'; 33 | -------------------------------------------------------------------------------- /application/views/admin/create_user.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
Platform
6 |

7 | 8 |
Version
9 |

10 |
11 |
12 |
13 |
14 |
Database
15 |
16 |
17 | 18 |
19 |
20 |
21 |
22 |
-------------------------------------------------------------------------------- /application/views/admin/deactivate_user.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/last_logins.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 |
Error Logs
8 |
9 |
10 | 11 |
12 |
13 |
14 | '; 18 | echo $pagination; 19 | echo '
'; 20 | } 21 | ?> 22 |
23 | -------------------------------------------------------------------------------- /application/views/admin/open_enrollment.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

4 |
5 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /application/views/admin/permission.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | -------------------------------------------------------------------------------- /application/views/admin/report_info.php: -------------------------------------------------------------------------------- 1 | 18 |
'; 19 | echo $search_result_label; 20 | echo '
'; 21 | } 22 | echo $table_students; 23 | } 24 | /** 25 | * for view 26 | */ 27 | if (isset($view)) 28 | { 29 | echo $view; 30 | } 31 | 32 | 33 | /** 34 | * search form for dean users_group 35 | */ 36 | if (isset($search_form_for_dean)) 37 | { 38 | echo $search_form_for_dean; 39 | } 40 | 41 | /** 42 | * dropping subject 43 | */ 44 | if (isset($drop_view)) 45 | { 46 | echo $drop_view; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /application/views/admin/subject_offers.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |

8 |
9 | 10 |

11 | 12 |

13 |
14 | 15 |

16 | 17 |

18 |
19 | 20 |

21 | 22 | 23 |

24 | 25 | 26 | -------------------------------------------------------------------------------- /application/views/auth/create_group.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 |
5 | 6 | 7 | 8 |

9 |
10 | 11 |

12 | 13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 | -------------------------------------------------------------------------------- /application/views/auth/deactivate_user.php: -------------------------------------------------------------------------------- 1 |

2 |

username);?>

3 | 4 | id);?> 5 | 6 |

7 | 8 | 9 | 10 | 11 |

12 | 13 | 14 | $user->id)); ?> 15 | 16 |

17 | 18 | -------------------------------------------------------------------------------- /application/views/auth/edit_group.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 |
5 | 6 | 7 | 8 |

9 |
10 | 11 |

12 | 13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 | -------------------------------------------------------------------------------- /application/views/auth/email/activate.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 |

5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/forgot_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 |

5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/auth/email/new_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | 5 |

6 | 7 | -------------------------------------------------------------------------------- /application/views/auth/forgot_password.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 |
5 | 6 | 7 | 8 |

9 |
10 | 11 |

12 | 13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /application/views/auth/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/auth/index2.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 |
5 | 6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 27 | 28 | 29 |
first_name,ENT_QUOTES,'UTF-8');?>last_name,ENT_QUOTES,'UTF-8');?>email,ENT_QUOTES,'UTF-8');?> 21 | groups as $group):?> 22 | id, htmlspecialchars($group->name,ENT_QUOTES,'UTF-8')) ;?>
23 | 24 |
active) ? anchor("auth/deactivate/".$user->id, lang('index_active_link')) : anchor("auth/activate/". $user->id, lang('index_inactive_link'));?>id, 'Edit') ;?>
30 | 31 |

| |

-------------------------------------------------------------------------------- /application/views/auth/login.php: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 |
5 | 6 | 7 | 8 |

9 | 10 | 11 |

12 | 13 |

14 | 15 | 16 |

17 | 18 |

19 | 20 | 21 |

22 | 23 | 24 |

25 | 26 | 27 | 28 |

29 |

-------------------------------------------------------------------------------- /application/views/auth/reset_password.php: -------------------------------------------------------------------------------- 1 |

2 | 3 |
4 | 5 | 6 | 7 |

8 |
9 | 10 |

11 | 12 |

13 |
14 | 15 |

16 | 17 | 18 | 19 | 20 |

21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/css/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/FontAwesome.otf -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/Thumbs.db -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/breadcrumb.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/Thumbs.db -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av1.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av2.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av3.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av4.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/av5.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image1.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image2.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/demo-image3.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/demo/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/demo/envelope.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox1.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox2.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox3.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox4.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gallery/imgbox5.jpg -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/gritter.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/hue.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/book.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/cabinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/cabinet.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/calendar.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/client.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/database.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/download.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/graph.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/home.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/lock.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/mail.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/pdf.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/people.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/piechart.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/search.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/shopping-bag.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/survey.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/tag.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/user.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/wallet.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/16/web.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/Thumbs.db -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/book.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/cabinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/cabinet.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/calendar.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/client.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/dashboard.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/database.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/download.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/graph.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/home.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/lock.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/mail.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/pdf.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/people.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/piechart.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/search.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/shopping-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/shopping-bag.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/survey.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/tag.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/user.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/wallet.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/icons/32/web.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/larrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/larrow.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/line.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/logo.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/menu-active.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/rarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/rarrow.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/saturation.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/select2.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/spinner.gif -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/img/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/framework/bootstrap/admin/matrix-admin-package/img/sprite.png -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/js/jquery.flot.resize.min.js: -------------------------------------------------------------------------------- 1 | (function(n,p,u){var w=n([]),s=n.resize=n.extend(n.resize,{}),o,l="setTimeout",m="resize",t=m+"-special-event",v="delay",r="throttleWindow";s[v]=250;s[r]=true;n.event.special[m]={setup:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.add(a);n.data(this,t,{w:a.width(),h:a.height()});if(w.length===1){q()}},teardown:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.not(a);a.removeData(t);if(!w.length){clearTimeout(o)}},add:function(b){if(!s[r]&&this[l]){return false}var c;function a(d,h,g){var f=n(this),e=n.data(this,t);e.w=h!==u?h:f.width();e.h=g!==u?g:f.height();c.apply(this,arguments)}if(n.isFunction(b)){c=b;return a}else{c=b.handler;b.handler=a}}};function q(){o=p[l](function(){w.each(function(){var d=n(this),a=d.width(),b=d.height(),c=n.data(this,t);if(a!==c.w||b!==c.h){d.trigger(m,[c.w=a,c.h=b])}});q()},s[v])}})(jQuery,this);(function(b){var a={};function c(f){function e(){var h=f.getPlaceholder();if(h.width()==0||h.height()==0){return}f.resize();f.setupGrid();f.draw()}function g(i,h){i.getPlaceholder().resize(e)}function d(i,h){i.getPlaceholder().unbind("resize",e)}f.hooks.bindEvents.push(g);f.hooks.shutdown.push(d)}b.plot.plugins.push({init:c,options:a,name:"resize",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/js/matrix.login.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | var login = $('#loginform'); 5 | var recover = $('#recoverform'); 6 | var speed = 400; 7 | 8 | $('#to-recover').click(function(){ 9 | 10 | $("#loginform").slideUp(); 11 | $("#recoverform").fadeIn(); 12 | }); 13 | $('#to-login').click(function(){ 14 | 15 | $("#recoverform").hide(); 16 | $("#loginform").fadeIn(); 17 | }); 18 | 19 | 20 | $('#to-login').click(function(){ 21 | 22 | }); 23 | 24 | if($.browser.msie == true && $.browser.version.slice(0,3) < 10) { 25 | $('input[placeholder]').each(function(){ 26 | 27 | var input = $(this); 28 | 29 | $(input).val(input.attr('placeholder')); 30 | 31 | $(input).focus(function(){ 32 | if (input.val() == input.attr('placeholder')) { 33 | input.val(''); 34 | } 35 | }); 36 | 37 | $(input).blur(function(){ 38 | if (input.val() == '' || input.val() == input.attr('placeholder')) { 39 | input.val(input.attr('placeholder')); 40 | } 41 | }); 42 | }); 43 | 44 | 45 | 46 | } 47 | }); -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/js/matrix.tables.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $('.data-table').dataTable({ 5 | "bJQueryUI": true, 6 | "sPaginationType": "full_numbers", 7 | "sDom": '<""l>t<"F"fp>' 8 | }); 9 | 10 | $('input[type=checkbox],input[type=radio],input[type=file]').uniform(); 11 | 12 | $('select').select2(); 13 | 14 | $("span.icon input:checkbox, th input:checkbox").click(function() { 15 | var checkedStatus = this.checked; 16 | var checkbox = $(this).parents('.widget-box').find('tr td:first-child input:checkbox'); 17 | checkbox.each(function() { 18 | this.checked = checkedStatus; 19 | if (checkedStatus == this.checked) { 20 | $(this).closest('.checker > span').removeClass('checked'); 21 | } 22 | if (this.checked) { 23 | $(this).closest('.checker > span').addClass('checked'); 24 | } 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /assets/framework/bootstrap/admin/matrix-admin-package/js/matrix.wizard.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $("#form-wizard").formwizard({ 5 | formPluginEnabled: true, 6 | validationEnabled: true, 7 | focusFirstInput : true, 8 | disableUIStyles : true, 9 | 10 | formOptions :{ 11 | success: function(data){$("#status").fadeTo(500,1,function(){ $(this).html("Form was submitted!").fadeTo(5000, 0); })}, 12 | beforeSubmit: function(data){$("#submitted").html("Form was submitted with ajax. Data sent to the server: " + $.param(data) + "");}, 13 | dataType: 'json', 14 | resetForm: true 15 | }, 16 | validationOptions : { 17 | rules: { 18 | username: "required", 19 | password: "required", 20 | password2: { 21 | equalTo: "#password" 22 | }, 23 | email: { required: true, email: true }, 24 | eula: "required" 25 | }, 26 | messages: { 27 | username: "Please enter your name or username", 28 | password: "You must enter the password", 29 | password2: { equalTo: "Password don't match" }, 30 | email: { required: "Please, enter your email", email: "Correct email format is name@domain.com" }, 31 | eula: "You must accept the eula" 32 | }, 33 | errorClass: "help-inline", 34 | errorElement: "span", 35 | highlight:function(element, errorClass, validClass) { 36 | $(element).parents('.control-group').addClass('error'); 37 | }, 38 | unhighlight: function(element, errorClass, validClass) { 39 | $(element).parents('.control-group').removeClass('error'); 40 | } 41 | } 42 | }); 43 | }); 44 | -------------------------------------------------------------------------------- /assets/framework/bootstrap/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/framework/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/images/students/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/images/students/test/four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/images/students/test/four.jpg -------------------------------------------------------------------------------- /assets/images/students/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/images/students/test/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/images/students/test/one.jpg -------------------------------------------------------------------------------- /assets/images/students/test/three.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/images/students/test/three.jpeg -------------------------------------------------------------------------------- /assets/images/students/test/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/images/students/test/two.jpg -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/VERSION: -------------------------------------------------------------------------------- 1 | <0f418c6> -------------------------------------------------------------------------------- /assets/libraries/dompdf/autoload.inc.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Fabien Ménager 7 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 8 | */ 9 | 10 | /** 11 | * Dompdf autoload function 12 | * 13 | * If you have an existing autoload function, add a call to this function 14 | * from your existing __autoload() implementation. 15 | * 16 | * @param string $class 17 | */ 18 | 19 | require_once __DIR__ . '/lib/html5lib/Parser.php'; 20 | //require_once __DIR__ . '/lib/php-font-lib/src/FontLib/Autoloader.php'; 21 | //require_once __DIR__ . '/lib/php-svg-lib/src/autoload.php'; 22 | 23 | /* 24 | * New PHP 5.3.0 namespaced autoloader 25 | */ 26 | require_once __DIR__ . '/src/Autoloader.php'; 27 | 28 | Dompdf\Autoloader::register(); 29 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dompdf/dompdf", 3 | "type": "library", 4 | "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", 5 | "homepage": "https://github.com/dompdf/dompdf", 6 | "license": "LGPL-2.1", 7 | "authors": [ 8 | { 9 | "name": "Fabien Ménager", 10 | "email": "fabien.menager@gmail.com" 11 | }, 12 | { 13 | "name": "Brian Sweeney", 14 | "email": "eclecticgeek@gmail.com" 15 | }, 16 | { 17 | "name": "Gabriel Bull", 18 | "email": "me@gabrielbull.com" 19 | } 20 | ], 21 | "autoload": { 22 | "psr-4" : { 23 | "Dompdf\\" : "src/" 24 | }, 25 | "classmap" : ["lib/"] 26 | }, 27 | "require": { 28 | "php": ">=5.3.0", 29 | "ext-gd": "*", 30 | "ext-dom": "*", 31 | "ext-mbstring": "*", 32 | "phenx/php-font-lib": "0.5.*", 33 | "phenx/php-svg-lib": "0.2.*" 34 | }, 35 | "require-dev": { 36 | "phpunit/phpunit": "4.8.*", 37 | "squizlabs/php_codesniffer": "2.*" 38 | }, 39 | "extra": { 40 | "branch-alias": { 41 | "dev-develop": "0.7-dev" 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/fonts/mustRead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Core 14 AFM Files - ReadMe 6 | 7 | 8 | or 9 | 10 | 11 | 12 | 13 | 14 |
This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM files are not distributed without this file; that all modifications to this file or any of the AFM files are prominently noted in the modified file(s); and that this paragraph is not modified. Adobe Systems has no responsibility or obligation to support the use of the AFM files. Col
15 |

Source http://www.adobe.com/devnet/font/#pcfi

16 | 17 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/html5lib/Parser.php: -------------------------------------------------------------------------------- 1 | parse(); 22 | return $tokenizer->save(); 23 | } 24 | 25 | /** 26 | * Parses an HTML fragment. 27 | * @param $text | HTML text to parse 28 | * @param $context String name of context element to pretend parsing is in. 29 | * @param $builder | Custom builder implementation 30 | * @return DOMDocument|DOMNodeList Parsed HTML as DOMDocument 31 | */ 32 | static public function parseFragment($text, $context = null, $builder = null) { 33 | $tokenizer = new HTML5_Tokenizer($text, $builder); 34 | $tokenizer->parseFragment($context); 35 | return $tokenizer->save(); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/lib/res/broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/assets/libraries/dompdf/lib/res/broken_image.png -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Autoloader.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf; 9 | 10 | /** 11 | * Create canvas instances 12 | * 13 | * The canvas factory creates canvas instances based on the 14 | * availability of rendering backends and config options. 15 | * 16 | * @package dompdf 17 | */ 18 | class CanvasFactory 19 | { 20 | /** 21 | * Constructor is private: this is a static class 22 | */ 23 | private function __construct() 24 | { 25 | } 26 | 27 | /** 28 | * @param Dompdf $dompdf 29 | * @param string|array $paper 30 | * @param string $orientation 31 | * @param string $class 32 | * 33 | * @return Canvas 34 | */ 35 | static function get_instance(Dompdf $dompdf, $paper = null, $orientation = null, $class = null) 36 | { 37 | $backend = strtolower($dompdf->getOptions()->getPdfBackend()); 38 | 39 | if (isset($class) && class_exists($class, false)) { 40 | $class .= "_Adapter"; 41 | } else { 42 | if (($backend === "auto" || $backend === "pdflib") && 43 | class_exists("PDFLib", false) 44 | ) { 45 | $class = "Dompdf\\Adapter\\PDFLib"; 46 | } 47 | 48 | else { 49 | if ($backend === "gd") { 50 | $class = "Dompdf\\Adapter\\GD"; 51 | } else { 52 | $class = "Dompdf\\Adapter\\CPDF"; 53 | } 54 | } 55 | } 56 | 57 | return new $class($paper, $orientation, $dompdf); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf; 10 | 11 | /** 12 | * Standard exception thrown by DOMPDF classes 13 | * 14 | * @package dompdf 15 | */ 16 | class Exception extends \Exception 17 | { 18 | 19 | /** 20 | * Class constructor 21 | * 22 | * @param string $message Error message 23 | * @param int $code Error code 24 | */ 25 | public function __construct($message = null, $code = 0) 26 | { 27 | parent::__construct($message, $code); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Exception/ImageException.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf\Exception; 9 | 10 | use Dompdf\Exception; 11 | 12 | /** 13 | * Image exception thrown by DOMPDF 14 | * 15 | * @package dompdf 16 | */ 17 | class ImageException extends Exception 18 | { 19 | 20 | /** 21 | * Class constructor 22 | * 23 | * @param string $message Error message 24 | * @param int $code Error code 25 | */ 26 | function __construct($message = null, $code = 0) 27 | { 28 | parent::__construct($message, $code); 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Frame/FrameList.php: -------------------------------------------------------------------------------- 1 | _frame = $frame; 26 | } 27 | 28 | /** 29 | * @return FrameListIterator 30 | */ 31 | function getIterator() 32 | { 33 | return new FrameListIterator($this->_frame); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Frame/FrameTreeList.php: -------------------------------------------------------------------------------- 1 | _root = $root; 26 | } 27 | 28 | /** 29 | * @return FrameTreeIterator 30 | */ 31 | public function getIterator() 32 | { 33 | return new FrameTreeIterator($this->_root); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/FrameDecorator/NullFrameDecorator.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf\FrameDecorator; 9 | 10 | use Dompdf\Dompdf; 11 | use Dompdf\Frame; 12 | 13 | /** 14 | * Dummy decorator 15 | * 16 | * @package dompdf 17 | */ 18 | class NullFrameDecorator extends AbstractFrameDecorator 19 | { 20 | /** 21 | * NullFrameDecorator constructor. 22 | * @param Frame $frame 23 | * @param Dompdf $dompdf 24 | */ 25 | function __construct(Frame $frame, Dompdf $dompdf) 26 | { 27 | parent::__construct($frame, $dompdf); 28 | $style = $this->_frame->get_style(); 29 | $style->width = 0; 30 | $style->height = 0; 31 | $style->margin = 0; 32 | $style->padding = 0; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/FrameDecorator/TableRow.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf\FrameDecorator; 9 | 10 | use Dompdf\Dompdf; 11 | use Dompdf\Frame; 12 | use Dompdf\FrameDecorator\Table as TableFrameDecorator; 13 | 14 | /** 15 | * Decorates Frames for table row layout 16 | * 17 | * @package dompdf 18 | */ 19 | class TableRow extends AbstractFrameDecorator 20 | { 21 | /** 22 | * TableRow constructor. 23 | * @param Frame $frame 24 | * @param Dompdf $dompdf 25 | */ 26 | function __construct(Frame $frame, Dompdf $dompdf) 27 | { 28 | parent::__construct($frame, $dompdf); 29 | } 30 | 31 | //........................................................................ 32 | 33 | /** 34 | * Remove all non table-cell frames from this row and move them after 35 | * the table. 36 | */ 37 | function normalise() 38 | { 39 | // Find our table parent 40 | $p = TableFrameDecorator::find_parent_table($this); 41 | 42 | $erroneous_frames = array(); 43 | foreach ($this->get_children() as $child) { 44 | $display = $child->get_style()->display; 45 | 46 | if ($display !== "table-cell") 47 | $erroneous_frames[] = $child; 48 | } 49 | 50 | // dump the extra nodes after the table. 51 | foreach ($erroneous_frames as $frame) 52 | $p->move_after($frame); 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/FrameReflower/ListBullet.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf\FrameReflower; 9 | 10 | use Dompdf\FrameDecorator\Block as BlockFrameDecorator; 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | 13 | /** 14 | * Reflows list bullets 15 | * 16 | * @package dompdf 17 | */ 18 | class ListBullet extends AbstractFrameReflower 19 | { 20 | 21 | /** 22 | * ListBullet constructor. 23 | * @param AbstractFrameDecorator $frame 24 | */ 25 | function __construct(AbstractFrameDecorator $frame) 26 | { 27 | parent::__construct($frame); 28 | } 29 | 30 | /** 31 | * @param BlockFrameDecorator|null $block 32 | */ 33 | function reflow(BlockFrameDecorator $block = null) 34 | { 35 | $style = $this->_frame->get_style(); 36 | 37 | $style->width = $this->_frame->get_width(); 38 | $this->_frame->position(); 39 | 40 | if ($style->list_style_position === "inside") { 41 | $p = $this->_frame->find_block_parent(); 42 | $p->add_frame_to_line($this->_frame); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/FrameReflower/NullFrameReflower.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\FrameReflower; 10 | 11 | use Dompdf\Frame; 12 | use Dompdf\FrameDecorator\Block as BlockFrameDecorator; 13 | 14 | /** 15 | * Dummy reflower 16 | * 17 | * @package dompdf 18 | */ 19 | class NullFrameReflower extends AbstractFrameReflower 20 | { 21 | 22 | /** 23 | * NullFrameReflower constructor. 24 | * @param Frame $frame 25 | */ 26 | function __construct(Frame $frame) 27 | { 28 | parent::__construct($frame); 29 | } 30 | 31 | /** 32 | * @param BlockFrameDecorator|null $block 33 | */ 34 | function reflow(BlockFrameDecorator $block = null) 35 | { 36 | return; 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/JavascriptEmbedder.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf; 9 | 10 | use Dompdf\Frame; 11 | 12 | /** 13 | * Embeds Javascript into the PDF document 14 | * 15 | * @package dompdf 16 | */ 17 | class JavascriptEmbedder 18 | { 19 | 20 | /** 21 | * @var Dompdf 22 | */ 23 | protected $_dompdf; 24 | 25 | /** 26 | * JavascriptEmbedder constructor. 27 | * 28 | * @param Dompdf $dompdf 29 | */ 30 | public function __construct(Dompdf $dompdf) 31 | { 32 | $this->_dompdf = $dompdf; 33 | } 34 | 35 | /** 36 | * @param $script 37 | */ 38 | public function insert($script) 39 | { 40 | $this->_dompdf->getCanvas()->javascript($script); 41 | } 42 | 43 | /** 44 | * @param \Dompdf\Frame $frame 45 | */ 46 | public function render(Frame $frame) 47 | { 48 | if (!$this->_dompdf->getOptions()->getIsJavascriptEnabled()) { 49 | return; 50 | } 51 | 52 | $this->insert($frame->get_node()->nodeValue); 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/PhpEvaluator.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf; 9 | 10 | use Dompdf\Frame; 11 | 12 | /** 13 | * Executes inline PHP code during the rendering process 14 | * 15 | * @package dompdf 16 | */ 17 | class PhpEvaluator 18 | { 19 | 20 | /** 21 | * @var Canvas 22 | */ 23 | protected $_canvas; 24 | 25 | /** 26 | * PhpEvaluator constructor. 27 | * @param Canvas $canvas 28 | */ 29 | public function __construct(Canvas $canvas) 30 | { 31 | $this->_canvas = $canvas; 32 | } 33 | 34 | /** 35 | * @param $code 36 | * @param array $vars 37 | */ 38 | public function evaluate($code, $vars = array()) 39 | { 40 | if (!$this->_canvas->get_dompdf()->getOptions()->getIsPhpEnabled()) { 41 | return; 42 | } 43 | 44 | // Set up some variables for the inline code 45 | $pdf = $this->_canvas; 46 | $fontMetrics = $pdf->get_dompdf()->getFontMetrics(); 47 | $PAGE_NUM = $pdf->get_page_number(); 48 | $PAGE_COUNT = $pdf->get_page_count(); 49 | 50 | // Override those variables if passed in 51 | foreach ($vars as $k => $v) { 52 | $$k = $v; 53 | } 54 | 55 | eval($code); 56 | } 57 | 58 | /** 59 | * @param \Dompdf\Frame $frame 60 | */ 61 | public function render(Frame $frame) 62 | { 63 | $this->evaluate($frame->get_node()->nodeValue); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Positioner/AbstractPositioner.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\Positioner; 10 | 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | 13 | /** 14 | * Base AbstractPositioner class 15 | * 16 | * Defines postioner interface 17 | * 18 | * @access private 19 | * @package dompdf 20 | */ 21 | abstract class AbstractPositioner 22 | { 23 | 24 | /** 25 | * @param AbstractFrameDecorator $frame 26 | * @return mixed 27 | */ 28 | abstract function position(AbstractFrameDecorator $frame); 29 | 30 | /** 31 | * @param AbstractFrameDecorator $frame 32 | * @param $offset_x 33 | * @param $offset_y 34 | * @param bool $ignore_self 35 | */ 36 | function move(AbstractFrameDecorator $frame, $offset_x, $offset_y, $ignore_self = false) 37 | { 38 | list($x, $y) = $frame->get_position(); 39 | 40 | if (!$ignore_self) { 41 | $frame->set_position($x + $offset_x, $y + $offset_y); 42 | } 43 | 44 | foreach ($frame->get_children() as $child) { 45 | $child->move($offset_x, $offset_y); 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Positioner/Block.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\Positioner; 10 | 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | 13 | /** 14 | * Positions block frames 15 | * 16 | * @access private 17 | * @package dompdf 18 | */ 19 | class Block extends AbstractPositioner { 20 | 21 | function position(AbstractFrameDecorator $frame) 22 | { 23 | $style = $frame->get_style(); 24 | $cb = $frame->get_containing_block(); 25 | $p = $frame->find_block_parent(); 26 | 27 | if ($p) { 28 | $float = $style->float; 29 | 30 | if (!$float || $float === "none") { 31 | $p->add_line(true); 32 | } 33 | $y = $p->get_current_line_box()->y; 34 | 35 | } else { 36 | $y = $cb["y"]; 37 | } 38 | 39 | $x = $cb["x"]; 40 | 41 | // Relative positionning 42 | if ($style->position === "relative") { 43 | $top = (float)$style->length_in_pt($style->top, $cb["h"]); 44 | //$right = (float)$style->length_in_pt($style->right, $cb["w"]); 45 | //$bottom = (float)$style->length_in_pt($style->bottom, $cb["h"]); 46 | $left = (float)$style->length_in_pt($style->left, $cb["w"]); 47 | 48 | $x += $left; 49 | $y += $top; 50 | } 51 | 52 | $frame->set_position($x, $y); 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Positioner/NullPositioner.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\Positioner; 10 | 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | 13 | /** 14 | * Dummy positioner 15 | * 16 | * @package dompdf 17 | */ 18 | class NullPositioner extends AbstractPositioner 19 | { 20 | 21 | /** 22 | * @param AbstractFrameDecorator $frame 23 | */ 24 | function position(AbstractFrameDecorator $frame) 25 | { 26 | return; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Positioner/TableCell.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\Positioner; 10 | 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | use Dompdf\FrameDecorator\Table; 13 | 14 | /** 15 | * Positions table cells 16 | * 17 | * @package dompdf 18 | */ 19 | class TableCell extends AbstractPositioner 20 | { 21 | 22 | /** 23 | * @param AbstractFrameDecorator $frame 24 | */ 25 | function position(AbstractFrameDecorator $frame) 26 | { 27 | $table = Table::find_parent_table($frame); 28 | $cellmap = $table->get_cellmap(); 29 | $frame->set_position($cellmap->get_frame_position($frame)); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Positioner/TableRow.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace Dompdf\Positioner; 10 | 11 | use Dompdf\FrameDecorator\AbstractFrameDecorator; 12 | 13 | /** 14 | * Positions table rows 15 | * 16 | * @package dompdf 17 | */ 18 | class TableRow extends AbstractPositioner 19 | { 20 | 21 | /** 22 | * @param AbstractFrameDecorator $frame 23 | */ 24 | function position(AbstractFrameDecorator $frame) 25 | { 26 | $cb = $frame->get_containing_block(); 27 | $p = $frame->get_prev_sibling(); 28 | 29 | if ($p) { 30 | $y = $p->get_position("y") + $p->get_margin_height(); 31 | } else { 32 | $y = $cb["y"]; 33 | } 34 | $frame->set_position($cb["x"], $y); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /assets/libraries/dompdf/src/Renderer/TableRowGroup.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | namespace Dompdf\Renderer; 9 | 10 | use Dompdf\Frame; 11 | 12 | /** 13 | * Renders block frames 14 | * 15 | * @package dompdf 16 | */ 17 | class TableRowGroup extends Block 18 | { 19 | 20 | /** 21 | * @param Frame $frame 22 | */ 23 | function render(Frame $frame) 24 | { 25 | $style = $frame->get_style(); 26 | 27 | $this->_set_opacity($frame->get_opacity($style->opacity)); 28 | 29 | $this->_render_border($frame); 30 | $this->_render_outline($frame); 31 | 32 | if ($this->_dompdf->getOptions()->getDebugLayout() && $this->_dompdf->getOptions()->getDebugLayoutBlocks()) { 33 | $this->_debug_layout($frame->get_border_box(), "red"); 34 | if ($this->_dompdf->getOptions()->getDebugLayoutPaddingBox()) { 35 | $this->_debug_layout($frame->get_padding_box(), "red", array(0.5, 0.5)); 36 | } 37 | } 38 | 39 | if ($this->_dompdf->getOptions()->getDebugLayout() && $this->_dompdf->getOptions()->getDebugLayoutLines() && $frame->get_decorator()) { 40 | foreach ($frame->get_decorator()->get_line_boxes() as $line) { 41 | $frame->_debug_layout(array($line->x, $line->y, $line->w, $line->h), "orange"); 42 | } 43 | } 44 | 45 | $id = $frame->get_node()->getAttribute("id"); 46 | if (strlen($id) > 0) { 47 | $this->_canvas->add_named_dest($id); 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "CI Capstone", 3 | "name": "ci-capstone", 4 | "type": "project", 5 | "homepage": "https://ci-capstone.lloricode.com/", 6 | "license": "MIT", 7 | "support": { 8 | }, 9 | "require": { 10 | "php": ">=5.2.4" 11 | }, 12 | "suggest": { 13 | "paragonie/random_compat": "Provides better randomness in PHP 5.x" 14 | }, 15 | "require-dev": { 16 | "mikey179/vfsStream": "1.1.*" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to CI Capstone 2 | 3 | 1.code must me formatted. 4 | 2.add your name and email (if you want) in comment to easy find out who is contributed. 5 | 6 | 7 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017, Lloric Mayuga Garcia 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /maintanance.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Maintenance 7 | 8 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |

Sorry for the inconvenience while we are temporarily unavailable.

23 |

Please revisit shortly

24 |

25 |
26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | index.file=index.php 2 | url=http://localhost/ci-capstone/ 3 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | include.path=${php.global.include.path} 2 | php.version=PHP_56 3 | source.encoding=UTF-8 4 | src.dir=. 5 | tags.asp=false 6 | tags.short=false 7 | web.root=. 8 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.php.project 4 | 5 | 6 | ci-capstone 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloricode/ci-capstone/764681720afbef7402b4db79beaaf59b2dfbc4ef/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | --------------------------------------------------------------------------------