├── application
├── views
│ ├── admin
│ │ ├── login.php
│ │ └── setting.php
│ ├── profile.php
│ ├── setting.php
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ └── error_exception.php
│ │ ├── index.html
│ │ └── html
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ └── error_404.php
│ ├── template
│ │ ├── admin-content.php
│ │ ├── content.php
│ │ └── admin-header.php
│ ├── index.html
│ ├── welcome.php
│ ├── ajax
│ │ └── generateDynamicQuizData.php
│ ├── membership-plan.php
│ ├── course-taken.php
│ └── sidebar.php
├── controllers
│ ├── Category.php
│ ├── Profile.php
│ ├── admin
│ │ ├── Login.php
│ │ ├── Logout.php
│ │ ├── Reports.php
│ │ ├── Welcome.php
│ │ └── Payment.php
│ ├── index.html
│ ├── Subscribe.php
│ ├── Logout.php
│ └── Courses.php
├── models
│ ├── paymentSetting.php
│ ├── Payment_model.php
│ ├── index.html
│ ├── Category_model.php
│ ├── Setting_model.php
│ ├── Welcome_model.php
│ ├── Subscription_model.php
│ └── Crud_model.php
├── libraries
│ ├── simplehtmldom
│ │ ├── testcase
│ │ │ ├── reader
│ │ │ │ ├── .svn
│ │ │ │ │ ├── dir-prop-base
│ │ │ │ │ ├── prop-base
│ │ │ │ │ │ ├── all_test.php.svn-base
│ │ │ │ │ │ ├── memory_test.php.svn-base
│ │ │ │ │ │ ├── element_testcase.php.svn-base
│ │ │ │ │ │ ├── performance_test.php.svn-base
│ │ │ │ │ │ └── selector_testcase.php.svn-base
│ │ │ │ │ ├── text-base
│ │ │ │ │ │ ├── all_test.php.svn-base
│ │ │ │ │ │ └── performance_test.php.svn-base
│ │ │ │ │ └── all-wcprops
│ │ │ │ ├── all_test.php
│ │ │ │ └── performance_test.php
│ │ │ ├── .svn
│ │ │ │ ├── prop-base
│ │ │ │ │ ├── all_test.php.svn-base
│ │ │ │ │ ├── mass_test.php.svn-base
│ │ │ │ │ ├── slick_test.php.svn-base
│ │ │ │ │ ├── slickspeed.htm.svn-base
│ │ │ │ │ ├── dom_testcase.php.svn-base
│ │ │ │ │ ├── memory_test.php.svn-base
│ │ │ │ │ ├── misc_testcase.php.svn-base
│ │ │ │ │ ├── std_testcase.php.svn-base
│ │ │ │ │ ├── strip_testcase.php.svn-base
│ │ │ │ │ ├── element_testcase.php.svn-base
│ │ │ │ │ ├── invalid_testcase.php.svn-base
│ │ │ │ │ ├── jquery-1.2.3.pack.js.svn-base
│ │ │ │ │ ├── selector_testcase.php.svn-base
│ │ │ │ │ ├── callback_testcase.php.svn-base
│ │ │ │ │ └── performance_test.php.svn-base
│ │ │ │ └── text-base
│ │ │ │ │ ├── all_test.php.svn-base
│ │ │ │ │ ├── performance_test.php.svn-base
│ │ │ │ │ ├── slick_test.php.svn-base
│ │ │ │ │ └── callback_testcase.php.svn-base
│ │ │ ├── html
│ │ │ │ └── .svn
│ │ │ │ │ ├── all-wcprops
│ │ │ │ │ └── entries
│ │ │ ├── all_test.php
│ │ │ ├── performance_test.php
│ │ │ ├── slick_test.php
│ │ │ └── misc_testcase.php
│ │ ├── manual
│ │ │ ├── .svn
│ │ │ │ ├── prop-base
│ │ │ │ │ ├── manual.htm.svn-base
│ │ │ │ │ ├── manual_api.htm.svn-base
│ │ │ │ │ └── manual_faq.htm.svn-base
│ │ │ │ ├── all-wcprops
│ │ │ │ └── entries
│ │ │ ├── img
│ │ │ │ ├── .svn
│ │ │ │ │ ├── prop-base
│ │ │ │ │ │ └── tab.png.svn-base
│ │ │ │ │ ├── text-base
│ │ │ │ │ │ └── tab.png.svn-base
│ │ │ │ │ ├── all-wcprops
│ │ │ │ │ └── entries
│ │ │ │ └── tab.png
│ │ │ ├── css
│ │ │ │ └── .svn
│ │ │ │ │ ├── all-wcprops
│ │ │ │ │ └── entries
│ │ │ └── js
│ │ │ │ └── .svn
│ │ │ │ ├── all-wcprops
│ │ │ │ └── entries
│ │ ├── app
│ │ │ ├── js
│ │ │ │ ├── images
│ │ │ │ │ ├── .svn
│ │ │ │ │ │ ├── prop-base
│ │ │ │ │ │ │ ├── treeview-default.gif.svn-base
│ │ │ │ │ │ │ └── treeview-default-line.gif.svn-base
│ │ │ │ │ │ ├── text-base
│ │ │ │ │ │ │ ├── treeview-default.gif.svn-base
│ │ │ │ │ │ │ └── treeview-default-line.gif.svn-base
│ │ │ │ │ │ ├── all-wcprops
│ │ │ │ │ │ └── entries
│ │ │ │ │ ├── treeview-default.gif
│ │ │ │ │ └── treeview-default-line.gif
│ │ │ │ ├── .svn
│ │ │ │ │ ├── all-wcprops
│ │ │ │ │ ├── text-base
│ │ │ │ │ │ └── screen.css.svn-base
│ │ │ │ │ └── entries
│ │ │ │ └── screen.css
│ │ │ └── .svn
│ │ │ │ ├── all-wcprops
│ │ │ │ └── entries
│ │ └── example
│ │ │ ├── example_extract_html.php
│ │ │ ├── .svn
│ │ │ ├── text-base
│ │ │ │ ├── example_extract_html.php.svn-base
│ │ │ │ ├── example_modify_contents.php.svn-base
│ │ │ │ ├── example_callback.php.svn-base
│ │ │ │ ├── simple_html_dom_utility.php.svn-base
│ │ │ │ ├── example_basic_selector.php.svn-base
│ │ │ │ └── example_advanced_selector.php.svn-base
│ │ │ ├── prop-base
│ │ │ │ ├── example_callback.php.svn-base
│ │ │ │ └── example_extract_html.php.svn-base
│ │ │ └── all-wcprops
│ │ │ ├── scraping
│ │ │ ├── .svn
│ │ │ │ ├── prop-base
│ │ │ │ │ ├── example_scraping_digg.php.svn-base
│ │ │ │ │ ├── example_scraping_imdb.php.svn-base
│ │ │ │ │ └── example_scraping_slashdot.php.svn-base
│ │ │ │ ├── all-wcprops
│ │ │ │ ├── text-base
│ │ │ │ │ ├── example_scraping_slashdot.php.svn-base
│ │ │ │ │ ├── example_scraping_digg.php.svn-base
│ │ │ │ │ └── example_scraping_imdb.php.svn-base
│ │ │ │ └── entries
│ │ │ ├── example_scraping_slashdot.php
│ │ │ ├── example_scraping_digg.php
│ │ │ └── example_scraping_imdb.php
│ │ │ ├── example_modify_contents.php
│ │ │ ├── example_callback.php
│ │ │ ├── simple_html_dom_utility.php
│ │ │ ├── example_basic_selector.php
│ │ │ └── example_advanced_selector.php
│ ├── composer.json
│ ├── simplehtmldom_1_5.zip
│ ├── index.html
│ └── vendor
│ │ ├── facebook
│ │ └── graph-sdk
│ │ │ ├── phpcs.xml.dist
│ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ ├── LICENSE
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Facebook
│ │ │ ├── FileUpload
│ │ │ └── FacebookVideo.php
│ │ │ ├── Exceptions
│ │ │ ├── FacebookSDKException.php
│ │ │ ├── FacebookClientException.php
│ │ │ ├── FacebookOtherException.php
│ │ │ ├── FacebookServerException.php
│ │ │ ├── FacebookThrottleException.php
│ │ │ ├── FacebookAuthorizationException.php
│ │ │ ├── FacebookAuthenticationException.php
│ │ │ └── FacebookResumableUploadException.php
│ │ │ ├── GraphNodes
│ │ │ ├── GraphList.php
│ │ │ ├── GraphObject.php
│ │ │ └── GraphApplication.php
│ │ │ ├── HttpClients
│ │ │ ├── certs
│ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem
│ │ │ └── FacebookHttpClientInterface.php
│ │ │ ├── Http
│ │ │ ├── RequestBodyInterface.php
│ │ │ └── RequestBodyUrlEncoded.php
│ │ │ ├── Url
│ │ │ └── UrlDetectionInterface.php
│ │ │ ├── Helpers
│ │ │ ├── FacebookJavaScriptHelper.php
│ │ │ └── FacebookCanvasHelper.php
│ │ │ ├── PersistentData
│ │ │ ├── PersistentDataInterface.php
│ │ │ └── FacebookMemoryPersistentDataHandler.php
│ │ │ ├── PseudoRandomString
│ │ │ └── PseudoRandomStringGeneratorInterface.php
│ │ │ └── polyfills.php
│ │ ├── autoload.php
│ │ └── composer
│ │ ├── autoload_classmap.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_files.php
│ │ └── autoload_real.php
├── language
│ ├── english
│ │ ├── auth_lang.php
│ │ └── index.html
│ └── index.html
├── middleware
│ └── checkAuth.php
├── .htaccess
├── index.html
├── cache
│ └── index.html
├── config
│ ├── index.html
│ ├── hooks.php
│ ├── profiler.php
│ └── memcached.php
├── core
│ ├── index.html
│ └── Base.php
├── helpers
│ ├── index.html
│ ├── quiz_helper.php
│ └── subscription_helper.php
├── hooks
│ └── index.html
├── logs
│ └── index.html
└── third_party
│ └── index.html
├── assets
├── assets
│ ├── css
│ │ ├── payinfo.css
│ │ ├── homestyle.css
│ │ ├── application.css
│ │ └── landing-page.min.css
│ ├── img
│ │ ├── doors.jpg
│ │ ├── list.png
│ │ ├── logo.jpg
│ │ ├── logo.png
│ │ ├── web.jpeg
│ │ ├── choose.png
│ │ ├── failure.png
│ │ ├── iceland.jpg
│ │ ├── review.png
│ │ ├── success.png
│ │ ├── Education.jpg
│ │ ├── avatar-dhg.png
│ │ ├── avatar-fat.jpg
│ │ ├── avatar-mdo.png
│ │ ├── backdrop.jpeg
│ │ ├── Blank_Avatar.png
│ │ ├── contsulting.jpg
│ │ ├── instagram_2.jpg
│ │ ├── afritask_icon.png
│ │ ├── backdrop
│ │ │ ├── charts.jpg
│ │ │ ├── business.jpg
│ │ │ ├── access-adult-bag-936081.jpg
│ │ │ └── adult-beverage-coffee-936095.jpg
│ │ ├── afritask_logo_black.png
│ │ ├── afritask_logo_white.jpg
│ │ ├── Events & Entertainment.jpg
│ │ ├── Repairs & Maintenance.jpg
│ │ ├── Tutor Coaching - Copy.jpg
│ │ ├── Graphics, Design & Media.jpg
│ │ ├── Mobile Phones & Computing.jpg
│ │ ├── afritask_logo_text_black.png
│ │ └── marketing-board-strategy.jpg
│ ├── scss
│ │ ├── _footer.scss
│ │ ├── _global.scss
│ │ ├── _testimonials.scss
│ │ ├── _showcase.scss
│ │ ├── landing-page.scss
│ │ ├── _mixins.scss
│ │ ├── _icons.scss
│ │ ├── _call-to-action.scss
│ │ ├── _masthead.scss
│ │ └── _variables.scss
│ ├── fonts
│ │ ├── ionicons.eot
│ │ ├── ionicons.ttf
│ │ ├── ionicons.woff
│ │ ├── nucleo-outline.eot
│ │ ├── nucleo-outline.ttf
│ │ ├── nucleo-outline.woff
│ │ ├── toolkit-entypo.eot
│ │ ├── toolkit-entypo.ttf
│ │ ├── toolkit-entypo.woff
│ │ ├── ComingSoon-Regular.ttf
│ │ ├── nucleo-outline.woff2
│ │ ├── toolkit-entypo.woff2
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── font
│ │ └── roboto
│ │ │ ├── Roboto-Bold.eot
│ │ │ ├── Roboto-Bold.ttf
│ │ │ ├── Roboto-Bold.woff
│ │ │ ├── Roboto-Light.eot
│ │ │ ├── Roboto-Light.ttf
│ │ │ ├── Roboto-Thin.eot
│ │ │ ├── Roboto-Thin.ttf
│ │ │ ├── Roboto-Thin.woff
│ │ │ ├── Roboto-Bold.woff2
│ │ │ ├── Roboto-Light.woff
│ │ │ ├── Roboto-Light.woff2
│ │ │ ├── Roboto-Medium.eot
│ │ │ ├── Roboto-Medium.ttf
│ │ │ ├── Roboto-Medium.woff
│ │ │ ├── Roboto-Regular.eot
│ │ │ ├── Roboto-Regular.ttf
│ │ │ ├── Roboto-Thin.woff2
│ │ │ ├── Roboto-Medium.woff2
│ │ │ ├── Roboto-Regular.woff
│ │ │ └── Roboto-Regular.woff2
│ └── js
│ │ └── mystyle.js
├── img
│ ├── quiz.png
│ ├── apple.png
│ ├── school.png
│ ├── playicon.png
│ ├── course
│ │ ├── uuu.jpg
│ │ ├── KOLLY56.jpg
│ │ ├── image-4.jpg
│ │ ├── cosmos_1.jpg
│ │ ├── cosmos_11.jpg
│ │ ├── linuxadmin.png
│ │ ├── uuu_thumb.jpg
│ │ ├── linuxadmin1.png
│ │ ├── KOLLY56_thumb.jpg
│ │ ├── cosmos_11_thumb.jpg
│ │ ├── cosmos_1_thumb.jpg
│ │ ├── linuxadmin1_thumb.png
│ │ ├── linuxadmin_thumb.png
│ │ ├── codecanyon-wordpress-plugin.jpg
│ │ ├── 180329124123-microsoft-logo-780x439.jpg
│ │ ├── codecanyon-wordpress-plugin_thumb.jpg
│ │ ├── 180329124123-microsoft-logo-780x4391.jpg
│ │ ├── 4BF28C6E-90C4-11E8-B590-0E6686FD4654.jpg
│ │ ├── 180329124123-microsoft-logo-780x4391_thumb.jpg
│ │ └── 4BF28C6E-90C4-11E8-B590-0E6686FD4654_thumb.jpg
│ ├── mobile-app.png
│ ├── slider
│ │ ├── slider1.jpg
│ │ ├── slider2.jpg
│ │ └── slider3.jpg
│ ├── laptop-3087585_1920.jpg
│ ├── school-3518726_1920.jpg
│ └── notebook-336634_1920.jpg
├── vegas
│ └── overlays
│ │ ├── 01.png
│ │ ├── 02.png
│ │ ├── 03.png
│ │ ├── 04.png
│ │ ├── 05.png
│ │ ├── 06.png
│ │ ├── 07.png
│ │ ├── 08.png
│ │ └── 09.png
├── css
│ ├── album.css
│ └── jquery.countdownTimer.css
└── js
│ └── script.js
├── background.png
├── system
├── fonts
│ ├── texb.ttf
│ └── index.html
├── .htaccess
├── index.html
├── core
│ ├── index.html
│ └── compat
│ │ └── index.html
├── database
│ ├── index.html
│ └── drivers
│ │ ├── index.html
│ │ ├── cubrid
│ │ └── index.html
│ │ ├── ibase
│ │ └── index.html
│ │ ├── mssql
│ │ └── index.html
│ │ ├── mysql
│ │ └── index.html
│ │ ├── mysqli
│ │ └── index.html
│ │ ├── oci8
│ │ └── index.html
│ │ ├── odbc
│ │ └── index.html
│ │ ├── pdo
│ │ ├── index.html
│ │ └── subdrivers
│ │ │ └── index.html
│ │ ├── sqlite
│ │ └── index.html
│ │ ├── sqlsrv
│ │ └── index.html
│ │ ├── postgre
│ │ └── index.html
│ │ └── sqlite3
│ │ └── index.html
├── helpers
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ ├── index.html
│ │ ├── number_lang.php
│ │ └── pagination_lang.php
└── libraries
│ ├── index.html
│ ├── Cache
│ ├── index.html
│ └── drivers
│ │ └── index.html
│ ├── Session
│ ├── index.html
│ └── drivers
│ │ └── index.html
│ └── Javascript
│ └── index.html
└── .github
└── FUNDING.yml
/application/views/admin/login.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/views/profile.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/views/setting.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/assets/css/payinfo.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/controllers/Category.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/controllers/Profile.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/models/paymentSetting.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/controllers/admin/Login.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/controllers/admin/Logout.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/background.png
--------------------------------------------------------------------------------
/assets/img/quiz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/quiz.png
--------------------------------------------------------------------------------
/assets/img/apple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/apple.png
--------------------------------------------------------------------------------
/assets/img/school.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/school.png
--------------------------------------------------------------------------------
/system/fonts/texb.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/system/fonts/texb.ttf
--------------------------------------------------------------------------------
/assets/img/playicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/playicon.png
--------------------------------------------------------------------------------
/application/models/Payment_model.php:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/assets/img/doors.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/doors.jpg
--------------------------------------------------------------------------------
/assets/assets/img/list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/list.png
--------------------------------------------------------------------------------
/assets/assets/img/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/logo.jpg
--------------------------------------------------------------------------------
/assets/assets/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/logo.png
--------------------------------------------------------------------------------
/assets/assets/img/web.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/web.jpeg
--------------------------------------------------------------------------------
/assets/assets/scss/_footer.scss:
--------------------------------------------------------------------------------
1 | footer.footer {
2 | padding-top: 4rem;
3 | padding-bottom: 4rem;
4 | }
5 |
--------------------------------------------------------------------------------
/assets/img/course/uuu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/uuu.jpg
--------------------------------------------------------------------------------
/assets/img/mobile-app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/mobile-app.png
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/dir-prop-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:mergeinfo
3 | V 0
4 |
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/img/choose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/choose.png
--------------------------------------------------------------------------------
/assets/assets/img/failure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/failure.png
--------------------------------------------------------------------------------
/assets/assets/img/iceland.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/iceland.jpg
--------------------------------------------------------------------------------
/assets/assets/img/review.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/review.png
--------------------------------------------------------------------------------
/assets/assets/img/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/success.png
--------------------------------------------------------------------------------
/assets/img/course/KOLLY56.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/KOLLY56.jpg
--------------------------------------------------------------------------------
/assets/img/course/image-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/image-4.jpg
--------------------------------------------------------------------------------
/assets/img/slider/slider1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/slider/slider1.jpg
--------------------------------------------------------------------------------
/assets/img/slider/slider2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/slider/slider2.jpg
--------------------------------------------------------------------------------
/assets/img/slider/slider3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/slider/slider3.jpg
--------------------------------------------------------------------------------
/assets/vegas/overlays/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/01.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/02.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/03.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/04.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/05.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/06.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/07.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/08.png
--------------------------------------------------------------------------------
/assets/vegas/overlays/09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/vegas/overlays/09.png
--------------------------------------------------------------------------------
/application/libraries/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require": {
3 | "facebook/graph-sdk": "^5.6"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/assets/assets/fonts/ionicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/ionicons.eot
--------------------------------------------------------------------------------
/assets/assets/fonts/ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/ionicons.ttf
--------------------------------------------------------------------------------
/assets/assets/img/Education.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Education.jpg
--------------------------------------------------------------------------------
/assets/assets/img/avatar-dhg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/avatar-dhg.png
--------------------------------------------------------------------------------
/assets/assets/img/avatar-fat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/avatar-fat.jpg
--------------------------------------------------------------------------------
/assets/assets/img/avatar-mdo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/avatar-mdo.png
--------------------------------------------------------------------------------
/assets/assets/img/backdrop.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/backdrop.jpeg
--------------------------------------------------------------------------------
/assets/img/course/cosmos_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/cosmos_1.jpg
--------------------------------------------------------------------------------
/assets/img/course/cosmos_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/cosmos_11.jpg
--------------------------------------------------------------------------------
/assets/img/course/linuxadmin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/linuxadmin.png
--------------------------------------------------------------------------------
/assets/img/course/uuu_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/uuu_thumb.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/.svn/prop-base/manual.htm.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/fonts/ionicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/ionicons.woff
--------------------------------------------------------------------------------
/assets/assets/img/Blank_Avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Blank_Avatar.png
--------------------------------------------------------------------------------
/assets/assets/img/contsulting.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/contsulting.jpg
--------------------------------------------------------------------------------
/assets/assets/img/instagram_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/instagram_2.jpg
--------------------------------------------------------------------------------
/assets/img/course/linuxadmin1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/linuxadmin1.png
--------------------------------------------------------------------------------
/assets/img/laptop-3087585_1920.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/laptop-3087585_1920.jpg
--------------------------------------------------------------------------------
/assets/img/school-3518726_1920.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/school-3518726_1920.jpg
--------------------------------------------------------------------------------
/application/language/english/auth_lang.php:
--------------------------------------------------------------------------------
1 | Invalid Login';
3 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/.svn/prop-base/manual_api.htm.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/.svn/prop-base/manual_faq.htm.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/all_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/mass_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/slick_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/slickspeed.htm.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/img/afritask_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/afritask_icon.png
--------------------------------------------------------------------------------
/assets/assets/img/backdrop/charts.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/backdrop/charts.jpg
--------------------------------------------------------------------------------
/assets/img/course/KOLLY56_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/KOLLY56_thumb.jpg
--------------------------------------------------------------------------------
/assets/img/course/cosmos_11_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/cosmos_11_thumb.jpg
--------------------------------------------------------------------------------
/assets/img/course/cosmos_1_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/cosmos_1_thumb.jpg
--------------------------------------------------------------------------------
/assets/img/notebook-336634_1920.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/notebook-336634_1920.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/dom_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/memory_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/misc_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/std_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/strip_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/fonts/nucleo-outline.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/nucleo-outline.eot
--------------------------------------------------------------------------------
/assets/assets/fonts/nucleo-outline.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/nucleo-outline.ttf
--------------------------------------------------------------------------------
/assets/assets/fonts/nucleo-outline.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/nucleo-outline.woff
--------------------------------------------------------------------------------
/assets/assets/fonts/toolkit-entypo.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/toolkit-entypo.eot
--------------------------------------------------------------------------------
/assets/assets/fonts/toolkit-entypo.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/toolkit-entypo.ttf
--------------------------------------------------------------------------------
/assets/assets/fonts/toolkit-entypo.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/toolkit-entypo.woff
--------------------------------------------------------------------------------
/assets/assets/img/backdrop/business.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/backdrop/business.jpg
--------------------------------------------------------------------------------
/assets/img/course/linuxadmin1_thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/linuxadmin1_thumb.png
--------------------------------------------------------------------------------
/assets/img/course/linuxadmin_thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/linuxadmin_thumb.png
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/element_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/invalid_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/jquery-1.2.3.pack.js.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/selector_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 12
2 | svn:keywords
3 | V 3
4 | Rev
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Bold.eot
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Bold.ttf
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Bold.woff
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Light.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Light.eot
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Light.ttf
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Thin.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Thin.eot
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Thin.ttf
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Thin.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Thin.woff
--------------------------------------------------------------------------------
/assets/assets/fonts/ComingSoon-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/ComingSoon-Regular.ttf
--------------------------------------------------------------------------------
/assets/assets/fonts/nucleo-outline.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/nucleo-outline.woff2
--------------------------------------------------------------------------------
/assets/assets/fonts/toolkit-entypo.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/toolkit-entypo.woff2
--------------------------------------------------------------------------------
/assets/assets/img/afritask_logo_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/afritask_logo_black.png
--------------------------------------------------------------------------------
/assets/assets/img/afritask_logo_white.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/afritask_logo_white.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom_1_5.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom_1_5.zip
--------------------------------------------------------------------------------
/application/middleware/checkAuth.php:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Bold.woff2
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Light.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Light.woff
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Light.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Light.woff2
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Medium.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Medium.eot
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Medium.ttf
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Medium.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Medium.woff
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Regular.eot
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Thin.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Thin.woff2
--------------------------------------------------------------------------------
/assets/assets/img/Events & Entertainment.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Events & Entertainment.jpg
--------------------------------------------------------------------------------
/assets/assets/img/Repairs & Maintenance.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Repairs & Maintenance.jpg
--------------------------------------------------------------------------------
/assets/assets/img/Tutor Coaching - Copy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Tutor Coaching - Copy.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/img/.svn/prop-base/tab.png.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:mime-type
3 | V 24
4 | application/octet-stream
5 | END
6 |
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Medium.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Medium.woff2
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Regular.woff
--------------------------------------------------------------------------------
/assets/assets/font/roboto/Roboto-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/font/roboto/Roboto-Regular.woff2
--------------------------------------------------------------------------------
/assets/assets/img/Graphics, Design & Media.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Graphics, Design & Media.jpg
--------------------------------------------------------------------------------
/assets/assets/img/Mobile Phones & Computing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/Mobile Phones & Computing.jpg
--------------------------------------------------------------------------------
/assets/assets/img/afritask_logo_text_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/afritask_logo_text_black.png
--------------------------------------------------------------------------------
/assets/assets/img/marketing-board-strategy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/marketing-board-strategy.jpg
--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/assets/img/course/codecanyon-wordpress-plugin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/codecanyon-wordpress-plugin.jpg
--------------------------------------------------------------------------------
/assets/assets/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/assets/assets/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/images/.svn/prop-base/treeview-default.gif.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:mime-type
3 | V 24
4 | application/octet-stream
5 | END
6 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/img/tab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom/manual/img/tab.png
--------------------------------------------------------------------------------
/assets/assets/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/assets/assets/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/assets/assets/img/backdrop/access-adult-bag-936081.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/backdrop/access-adult-bag-936081.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/images/.svn/prop-base/treeview-default-line.gif.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:mime-type
3 | V 24
4 | application/octet-stream
5 | END
6 |
--------------------------------------------------------------------------------
/assets/img/course/180329124123-microsoft-logo-780x439.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/180329124123-microsoft-logo-780x439.jpg
--------------------------------------------------------------------------------
/assets/img/course/codecanyon-wordpress-plugin_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/codecanyon-wordpress-plugin_thumb.jpg
--------------------------------------------------------------------------------
/assets/assets/img/backdrop/adult-beverage-coffee-936095.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/assets/img/backdrop/adult-beverage-coffee-936095.jpg
--------------------------------------------------------------------------------
/assets/img/course/180329124123-microsoft-logo-780x4391.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/180329124123-microsoft-logo-780x4391.jpg
--------------------------------------------------------------------------------
/assets/img/course/4BF28C6E-90C4-11E8-B590-0E6686FD4654.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/4BF28C6E-90C4-11E8-B590-0E6686FD4654.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/html/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 54
4 | /svnroot/simplehtmldom/!svn/ver/28/trunk/testcase/html
5 | END
6 |
--------------------------------------------------------------------------------
/assets/img/course/180329124123-microsoft-logo-780x4391_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/180329124123-microsoft-logo-780x4391_thumb.jpg
--------------------------------------------------------------------------------
/assets/img/course/4BF28C6E-90C4-11E8-B590-0E6686FD4654_thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/assets/img/course/4BF28C6E-90C4-11E8-B590-0E6686FD4654_thumb.jpg
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/example_extract_html.php:
--------------------------------------------------------------------------------
1 | plaintext;
5 | ?>
--------------------------------------------------------------------------------
/application/views/errors/cli/error_404.php:
--------------------------------------------------------------------------------
1 | load->view('template/admin-header');?>
2 | load->view($page);?>
3 | load->view('template/admin-footer');?>
4 |
--------------------------------------------------------------------------------
/assets/assets/scss/_global.scss:
--------------------------------------------------------------------------------
1 | body {
2 | @include body-font;
3 | }
4 |
5 | h1,
6 | h2,
7 | h3,
8 | h4,
9 | h5,
10 | h6 {
11 | @include body-font;
12 | font-weight: 700;
13 | }
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/images/treeview-default.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom/app/js/images/treeview-default.gif
--------------------------------------------------------------------------------
/application/views/errors/cli/error_general.php:
--------------------------------------------------------------------------------
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/libraries/simplehtmldom/app/js/images/treeview-default-line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom/app/js/images/treeview-default-line.gif
--------------------------------------------------------------------------------
/system/core/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/helpers/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 |
--------------------------------------------------------------------------------
/application/cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/hooks/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/example_extract_html.php.svn-base:
--------------------------------------------------------------------------------
1 | plaintext;
5 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/img/.svn/text-base/tab.png.svn-base:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom/manual/img/.svn/text-base/tab.png.svn-base
--------------------------------------------------------------------------------
/application/logs/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/models/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 |
--------------------------------------------------------------------------------
/system/core/compat/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 |
--------------------------------------------------------------------------------
/application/controllers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/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/errors/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/language/english/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/Session/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/english/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/phpcs.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 | src/
4 | tests/
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/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/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/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/sqlite/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/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/Javascript/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/sqlite3/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/database/drivers/pdo/subdrivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/controllers/admin/Reports.php:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/images/.svn/text-base/treeview-default.gif.svn-base:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/CourseToQuiz/HEAD/application/libraries/simplehtmldom/app/js/images/.svn/text-base/treeview-default.gif.svn-base
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/callback_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:eol-style
3 | V 6
4 | native
5 | K 12
6 | svn:keywords
7 | V 3
8 | Rev
9 | K 13
10 | svn:mime-type
11 | V 10
12 | text/x-php
13 | END
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/prop-base/performance_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:eol-style
3 | V 6
4 | native
5 | K 12
6 | svn:keywords
7 | V 3
8 | Rev
9 | K 13
10 | svn:mime-type
11 | V 10
12 | text/x-php
13 | END
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/prop-base/all_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:eol-style
3 | V 6
4 | native
5 | K 12
6 | svn:keywords
7 | V 3
8 | Rev
9 | K 13
10 | svn:mime-type
11 | V 10
12 | text/x-php
13 | END
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/prop-base/memory_test.php.svn-base:
--------------------------------------------------------------------------------
1 | K 13
2 | svn:eol-style
3 | V 6
4 | native
5 | K 12
6 | svn:keywords
7 | V 3
8 | Rev
9 | K 13
10 | svn:mime-type
11 | V 10
12 | text/x-php
13 | END
14 |
--------------------------------------------------------------------------------
/application/libraries/vendor/autoload.php:
--------------------------------------------------------------------------------
1 | array($vendorDir . '/facebook/graph-sdk/src/Facebook'),
10 | );
11 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please [read the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated.
4 |
--------------------------------------------------------------------------------
/application/libraries/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
1 | $vendorDir . '/facebook/graph-sdk/src/Facebook/polyfills.php',
10 | );
11 |
--------------------------------------------------------------------------------
/application/models/Category_model.php:
--------------------------------------------------------------------------------
1 | db->insert('category');
14 | }
15 |
16 |
17 | }
18 | ?>
19 |
--------------------------------------------------------------------------------
/application/controllers/Subscribe.php:
--------------------------------------------------------------------------------
1 | load->model('welcome_model');
11 | }
12 |
13 | function plan(){
14 |
15 | }
16 |
17 | }
18 | ?>
19 |
--------------------------------------------------------------------------------
/assets/assets/scss/landing-page.scss:
--------------------------------------------------------------------------------
1 | // Core variables and mixins
2 | @import "variables.scss";
3 | @import "mixins.scss";
4 | // Global CSS
5 | @import "global.scss";
6 | // Components
7 | @import "masthead.scss";
8 | @import "showcase.scss";
9 | @import "icons.scss";
10 | @import "testimonials.scss";
11 | @import "call-to-action.scss";
12 | @import "footer.scss";
13 |
--------------------------------------------------------------------------------
/assets/assets/scss/_mixins.scss:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // Background Cover Mixin
3 | @mixin background-cover {
4 | -webkit-background-size: cover;
5 | -moz-background-size: cover;
6 | -o-background-size: cover;
7 | background-size: cover;
8 | }
9 |
10 | // Font Mixins
11 | @mixin body-font {
12 | font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
13 | }
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/all_test.php:
--------------------------------------------------------------------------------
1 | isFile() && strpos($entry, '_testcase.')>0) {
7 | echo basename($entry);
8 | require_once($entry);
9 | echo '
...pass!
';
10 | }
11 | }
12 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/text-base/all_test.php.svn-base:
--------------------------------------------------------------------------------
1 | isFile() && strpos($entry, '_testcase.')>0) {
7 | echo basename($entry);
8 | require_once($entry);
9 | echo '
...pass!
';
10 | }
11 | }
12 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 45
4 | /svnroot/simplehtmldom/!svn/ver/179/trunk/app
5 | END
6 | google.htm
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 56
10 | /svnroot/simplehtmldom/!svn/ver/179/trunk/app/google.htm
11 | END
12 | index.php
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 55
16 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/index.php
17 | END
18 |
--------------------------------------------------------------------------------
/assets/assets/scss/_icons.scss:
--------------------------------------------------------------------------------
1 | .features-icons {
2 | padding-top: 7rem;
3 | padding-bottom: 7rem;
4 | .features-icons-item {
5 | max-width: 20rem;
6 | .features-icons-icon {
7 | height: 7rem;
8 | i {
9 | font-size: 4.5rem;
10 | }
11 | }
12 | &:hover {
13 | .features-icons-icon {
14 | i {
15 | font-size: 5rem;
16 | }
17 | }
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/html/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/testcase/html
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-03-14T14:52:38.823464Z
11 | 28
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 |
--------------------------------------------------------------------------------
/application/models/Setting_model.php:
--------------------------------------------------------------------------------
1 | db->where(['setting_type' => 'quiz_time'])->get('setting');
8 |
9 | if($query->num_rows() > 0){
10 | foreach($query->result_array() as $r)
11 | return json_decode($r['json_data'],true);
12 | }
13 | }
14 |
15 |
16 |
17 | }
18 | ?>
19 |
--------------------------------------------------------------------------------
/application/models/Welcome_model.php:
--------------------------------------------------------------------------------
1 |
28 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/css/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 52
4 | /svnroot/simplehtmldom/!svn/ver/120/trunk/manual/css
5 | END
6 | default.css
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 64
10 | /svnroot/simplehtmldom/!svn/ver/120/trunk/manual/css/default.css
11 | END
12 | ui.tabs.css
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 63
16 | /svnroot/simplehtmldom/!svn/ver/29/trunk/manual/css/ui.tabs.css
17 | END
18 |
--------------------------------------------------------------------------------
/assets/assets/scss/_call-to-action.scss:
--------------------------------------------------------------------------------
1 | .call-to-action {
2 | position: relative;
3 | background-color: $gray-800;
4 | background: url('../img/bg-masthead.jpg') no-repeat center center;
5 | @include background-cover;
6 | padding-top: 7rem;
7 | padding-bottom: 7rem;
8 | .overlay {
9 | position: absolute;
10 | background-color: $gray-900;
11 | height: 100%;
12 | width: 100%;
13 | top: 0;
14 | left: 0;
15 | opacity: 0.3;
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: algobasket # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | custom: # Replace with a single custom sponsorship URL
9 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/js/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 50
4 | /svnroot/simplehtmldom/!svn/ver/29/trunk/manual/js
5 | END
6 | jquery-1.2.3.pack.js
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 71
10 | /svnroot/simplehtmldom/!svn/ver/29/trunk/manual/js/jquery-1.2.3.pack.js
11 | END
12 | ui.tabs.pack.js
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 66
16 | /svnroot/simplehtmldom/!svn/ver/29/trunk/manual/js/ui.tabs.pack.js
17 | END
18 |
--------------------------------------------------------------------------------
/assets/assets/js/mystyle.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function () {
2 |
3 | var scrollTop = 0;
4 | $(window).scroll(function () {
5 | scrollTop = $(window).scrollTop();
6 | $('.counter').html(scrollTop);
7 |
8 | if (scrollTop >= 100) {
9 | $('.scrolling-navbar').addClass('top-nav-collapse');
10 | } else if (scrollTop < 100) {
11 | $('.scrolling-navbar').removeClass('top-nav-collapse');
12 | }
13 |
14 | });
15 |
16 | });
--------------------------------------------------------------------------------
/application/helpers/quiz_helper.php:
--------------------------------------------------------------------------------
1 | load->model('setting_model');
6 | return $ci->setting_model->quizTime();
7 | }
8 | }
9 |
10 | if( ! function_exists('courseRating')){
11 | function courseRating($course_id){
12 | $ci = get_instance();
13 | $ci->load->model('quiz_model');
14 | return $ci->quiz_model->courseRating($course_id);
15 | }
16 | }
17 | ?>
18 |
--------------------------------------------------------------------------------
/application/config/hooks.php:
--------------------------------------------------------------------------------
1 | find('img') as $e)
10 | $e->outertext = '';
11 |
12 | // replace all input
13 | foreach($html->find('input') as $e)
14 | $e->outertext = '[INPUT]';
15 |
16 | // dump contents
17 | echo $html;
18 | ?>
--------------------------------------------------------------------------------
/application/views/template/content.php:
--------------------------------------------------------------------------------
1 | session->userdata('rolename'),array('admin'))){ ?>
2 | load->view('template/admin-header');?>
3 |
4 | load->view('template/header');?>
5 |
6 |
7 | load->view($page);?>
8 |
9 | session->userdata('rolename'),array('admin'))){ ?>
10 | load->view('template/admin-footer');?>
11 |
12 | load->view('template/footer');?>
13 |
14 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/example_modify_contents.php.svn-base:
--------------------------------------------------------------------------------
1 | find('img') as $e)
10 | $e->outertext = '';
11 |
12 | // replace all input
13 | foreach($html->find('input') as $e)
14 | $e->outertext = '[INPUT]';
15 |
16 | // dump contents
17 | echo $html;
18 | ?>
--------------------------------------------------------------------------------
/application/config/profiler.php:
--------------------------------------------------------------------------------
1 | session->unset_userdata(array(
8 | 'userId' => '',
9 | 'username' => '',
10 | 'email' => '',
11 | 'status' => '',
12 | 'rolename' => '',
13 | 'displayname' => '',
14 | 'adminId' => '',
15 | 'redirectAfterLogin' => ''
16 | ));
17 | $this->session->sess_destroy();
18 | redirect('auth/login');
19 | }
20 | }
21 | ?>
22 |
--------------------------------------------------------------------------------
/application/helpers/subscription_helper.php:
--------------------------------------------------------------------------------
1 | load->model('subscription_model');
6 | $return = $ci->subscription_model->hasSubscription($userId,$planId);
7 | return $return;
8 | }
9 | }
10 |
11 | if( ! function_exists('quizType')){
12 | function quizType($typeId){
13 | return ($typeId == 1) ? "" : "";
14 | }
15 | }
16 |
17 |
18 | ?>
19 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 48
4 | /svnroot/simplehtmldom/!svn/ver/165/trunk/manual
5 | END
6 | manual.htm
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 59
10 | /svnroot/simplehtmldom/!svn/ver/165/trunk/manual/manual.htm
11 | END
12 | manual_faq.htm
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 63
16 | /svnroot/simplehtmldom/!svn/ver/165/trunk/manual/manual_faq.htm
17 | END
18 | manual_api.htm
19 | K 25
20 | svn:wc:ra_dav:version-url
21 | V 63
22 | /svnroot/simplehtmldom/!svn/ver/165/trunk/manual/manual_api.htm
23 | END
24 |
--------------------------------------------------------------------------------
/application/config/memcached.php:
--------------------------------------------------------------------------------
1 | array(
15 | 'hostname' => '127.0.0.1',
16 | 'port' => '11211',
17 | 'weight' => '1',
18 | ),
19 | );
20 |
--------------------------------------------------------------------------------
/assets/assets/scss/_masthead.scss:
--------------------------------------------------------------------------------
1 | header.masthead {
2 | position: relative;
3 | background-color: $gray-800;
4 | background: url('../img/bg-masthead.jpg') no-repeat center center;
5 | @include background-cover;
6 | padding-top: 8rem;
7 | padding-bottom: 8rem;
8 | .overlay {
9 | position: absolute;
10 | background-color: $gray-900;
11 | height: 100%;
12 | width: 100%;
13 | top: 0;
14 | left: 0;
15 | opacity: 0.3;
16 | }
17 | h1 {
18 | font-size: 2rem;
19 | }
20 | @media (min-width: 768px) {
21 | padding-top: 12rem;
22 | padding-bottom: 12rem;
23 | h1 {
24 | font-size: 3rem;
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 58
4 | /svnroot/simplehtmldom/!svn/ver/169/trunk/example/scraping
5 | END
6 | example_scraping_digg.php
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 84
10 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/scraping/example_scraping_digg.php
11 | END
12 | example_scraping_imdb.php
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 84
16 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/scraping/example_scraping_imdb.php
17 | END
18 | example_scraping_slashdot.php
19 | K 25
20 | svn:wc:ra_dav:version-url
21 | V 88
22 | /svnroot/simplehtmldom/!svn/ver/169/trunk/example/scraping/example_scraping_slashdot.php
23 | END
24 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 48
4 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/js
5 | END
6 | jquery.treeview.css
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 68
10 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/js/jquery.treeview.css
11 | END
12 | jquery.treeview.js
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 67
16 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/js/jquery.treeview.js
17 | END
18 | screen.css
19 | K 25
20 | svn:wc:ra_dav:version-url
21 | V 59
22 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/js/screen.css
23 | END
24 | jquery.js
25 | K 25
26 | svn:wc:ra_dav:version-url
27 | V 58
28 | /svnroot/simplehtmldom/!svn/ver/176/trunk/app/js/jquery.js
29 | END
30 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/img/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/manual/img
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-03-14T14:58:12.908404Z
11 | 29
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | tab.png
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:53.595300Z
36 | 83a79d462146a7d0d1ea4dd969101885
37 | 2008-03-14T14:58:12.908404Z
38 | 29
39 | me578022
40 | has-props
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 734
62 |
63 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/screen.css:
--------------------------------------------------------------------------------
1 | html, body {height:100%; margin: 0; padding: 0; }
2 |
3 | html>body {
4 | font-size: 16px;
5 | font-size: 68.75%;
6 | } /* Reset Base Font Size */
7 |
8 | body {
9 | font-family: Verdana, helvetica, arial, sans-serif;
10 | font-size: 68.75%;
11 | background: #fff;
12 | color: #333;
13 | }
14 |
15 | h1, h2 { font-family: 'trebuchet ms', verdana, arial; padding: 10px; margin: 0 }
16 | h1 { font-size: large }
17 |
18 | #banner { padding: 15px; background-color: #06b; color: white; font-size: large; border-bottom: 1px solid #ccc;
19 | background: url(bg.gif) repeat-x; text-align: center }
20 | #banner a { color: white; }
21 |
22 | #main { padding: 1em; }
23 |
24 | a img { border: none; }
--------------------------------------------------------------------------------
/assets/css/album.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --jumbotron-padding-y: 3rem;
3 | }
4 |
5 | .jumbotron {
6 | padding-top: var(--jumbotron-padding-y);
7 | padding-bottom: var(--jumbotron-padding-y);
8 | margin-bottom: 0;
9 | background-color: #fff;
10 | }
11 | @media (min-width: 768px) {
12 | .jumbotron {
13 | padding-top: calc(var(--jumbotron-padding-y) * 2);
14 | padding-bottom: calc(var(--jumbotron-padding-y) * 2);
15 | }
16 | }
17 |
18 | .jumbotron p:last-child {
19 | margin-bottom: 0;
20 | }
21 |
22 | .jumbotron-heading {
23 | font-weight: 300;
24 | }
25 |
26 | .jumbotron .container {
27 | max-width: 40rem;
28 | }
29 |
30 | footer {
31 | padding-top: 3rem;
32 | padding-bottom: 3rem;
33 | }
34 |
35 | footer p {
36 | margin-bottom: .25rem;
37 | }
38 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/example_callback.php.svn-base:
--------------------------------------------------------------------------------
1 | tag=='input')
8 | $element->outertext = 'input';
9 |
10 | if ($element->tag=='img')
11 | $element->outertext = 'img';
12 |
13 | if ($element->tag=='a')
14 | $element->outertext = 'a';
15 | }
16 |
17 |
18 | // 2. create HTML Dom
19 | $html = file_get_html('http://www.google.com/');
20 |
21 |
22 | // 3. Register the callback function with it's function name
23 | $html->set_callback('my_callback');
24 |
25 |
26 | // 4. Callback function will be invoked while dumping
27 | echo $html;
28 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/example_callback.php:
--------------------------------------------------------------------------------
1 | tag=='input')
8 | $element->outertext = 'input';
9 |
10 | if ($element->tag=='img')
11 | $element->outertext = 'img';
12 |
13 | if ($element->tag=='a')
14 | $element->outertext = 'a';
15 | }
16 |
17 |
18 | // 2. create HTML Dom
19 | $html = file_get_html('http://www.google.com/');
20 |
21 |
22 | // 3. Register the callback function with it's function name
23 | $html->set_callback('my_callback');
24 |
25 |
26 | // 4. Callback function will be invoked while dumping
27 | echo $html;
28 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/.svn/text-base/screen.css.svn-base:
--------------------------------------------------------------------------------
1 | html, body {height:100%; margin: 0; padding: 0; }
2 |
3 | html>body {
4 | font-size: 16px;
5 | font-size: 68.75%;
6 | } /* Reset Base Font Size */
7 |
8 | body {
9 | font-family: Verdana, helvetica, arial, sans-serif;
10 | font-size: 68.75%;
11 | background: #fff;
12 | color: #333;
13 | }
14 |
15 | h1, h2 { font-family: 'trebuchet ms', verdana, arial; padding: 10px; margin: 0 }
16 | h1 { font-size: large }
17 |
18 | #banner { padding: 15px; background-color: #06b; color: white; font-size: large; border-bottom: 1px solid #ccc;
19 | background: url(bg.gif) repeat-x; text-align: center }
20 | #banner a { color: white; }
21 |
22 | #main { padding: 1em; }
23 |
24 | a img { border: none; }
--------------------------------------------------------------------------------
/application/views/errors/cli/error_php.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/error_exception.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/libraries/simplehtmldom/testcase/all_test.php:
--------------------------------------------------------------------------------
1 | '', 'plain'=>'', 'outer'=>'')) {
6 | $html_dom->load($str);
7 | $e = $html_dom->find($selector, 0);
8 | if (isset($params['inner']))
9 | assert($e->innertext===$params['inner']);
10 | if (isset($params['plain']))
11 | assert($e->plaintext===$params['plain']);
12 | if (isset($params['outer']))
13 | assert($e->outertext===$params['outer']);
14 | assert($html_dom==$str);
15 | }
16 |
17 | foreach (new DirectoryIterator(getcwd()) as $entry) {
18 | if ($entry->isFile() && strpos($entry, '_testcase.')>0) {
19 | echo basename($entry);
20 | require_once($entry);
21 | echo '
...pass!
';
22 | }
23 | }
24 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/text-base/all_test.php.svn-base:
--------------------------------------------------------------------------------
1 | '', 'plain'=>'', 'outer'=>'')) {
6 | $html_dom->load($str);
7 | $e = $html_dom->find($selector, 0);
8 | if (isset($params['inner']))
9 | assert($e->innertext===$params['inner']);
10 | if (isset($params['plain']))
11 | assert($e->plaintext===$params['plain']);
12 | if (isset($params['outer']))
13 | assert($e->outertext===$params['outer']);
14 | assert($html_dom==$str);
15 | }
16 |
17 | foreach (new DirectoryIterator(getcwd()) as $entry) {
18 | if ($entry->isFile() && strpos($entry, '_testcase.')>0) {
19 | echo basename($entry);
20 | require_once($entry);
21 | echo '
...pass!
';
22 | }
23 | }
24 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 57
4 | /svnroot/simplehtmldom/!svn/ver/130/trunk/testcase/reader
5 | END
6 | selector_testcase.php
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 79
10 | /svnroot/simplehtmldom/!svn/ver/130/trunk/testcase/reader/selector_testcase.php
11 | END
12 | performance_test.php
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 78
16 | /svnroot/simplehtmldom/!svn/ver/130/trunk/testcase/reader/performance_test.php
17 | END
18 | element_testcase.php
19 | K 25
20 | svn:wc:ra_dav:version-url
21 | V 78
22 | /svnroot/simplehtmldom/!svn/ver/130/trunk/testcase/reader/element_testcase.php
23 | END
24 | all_test.php
25 | K 25
26 | svn:wc:ra_dav:version-url
27 | V 70
28 | /svnroot/simplehtmldom/!svn/ver/129/trunk/testcase/reader/all_test.php
29 | END
30 | memory_test.php
31 | K 25
32 | svn:wc:ra_dav:version-url
33 | V 73
34 | /svnroot/simplehtmldom/!svn/ver/130/trunk/testcase/reader/memory_test.php
35 | END
36 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/text-base/performance_test.php.svn-base:
--------------------------------------------------------------------------------
1 | load($str, false);
19 |
20 | list($eu, $es) = explode(' ', microtime());
21 | list($bu, $bs) = explode(' ', $start);
22 |
23 | $diff = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
24 |
25 | if ($diff>$max)
26 | $max = $diff;
27 |
28 | if ($diff<$min)
29 | $min = $diff;
30 |
31 | $all += $diff;
32 | echo sprintf('(%.1f)', $diff).'
';
33 | }
34 |
35 | echo '
-------------------------
';
36 | echo 'min: ' . $min . '
';
37 | echo 'max: ' . $max . '
';
38 |
39 | echo '
avg: ' . $all/$count . '
';
40 | ?>
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/assets/assets/scss/_variables.scss:
--------------------------------------------------------------------------------
1 | // Variables
2 |
3 | // Restated Bootstrap Variables
4 |
5 | $white: #fff !default;
6 | $gray-100: #f8f9fa !default;
7 | $gray-200: #e9ecef !default;
8 | $gray-300: #dee2e6 !default;
9 | $gray-400: #ced4da !default;
10 | $gray-500: #adb5bd !default;
11 | $gray-600: #868e96 !default;
12 | $gray-700: #495057 !default;
13 | $gray-800: #343a40 !default;
14 | $gray-900: #212529 !default;
15 | $black: #000 !default;
16 |
17 | $blue: #007bff !default;
18 | $indigo: #6610f2 !default;
19 | $purple: #6f42c1 !default;
20 | $pink: #e83e8c !default;
21 | $red: #dc3545 !default;
22 | $orange: #fd7e14 !default;
23 | $yellow: #ffc107 !default;
24 | $green: #28a745 !default;
25 | $teal: #20c997 !default;
26 | $cyan: #17a2b8 !default;
27 |
28 | $primary: $blue !default;
29 | $secondary: $gray-600 !default;
30 | $success: $green !default;
31 | $info: $cyan !default;
32 | $warning: $yellow !default;
33 | $danger: $red !default;
34 | $light: $gray-100 !default;
35 | $dark: $gray-800 !default;
36 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/performance_test.php:
--------------------------------------------------------------------------------
1 | load($str, false);
19 |
20 | list($eu, $es) = explode(' ', microtime());
21 | list($bu, $bs) = explode(' ', $start);
22 |
23 | $diff = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
24 |
25 | if ($diff>$max)
26 | $max = $diff;
27 |
28 | if ($diff<$min)
29 | $min = $diff;
30 |
31 | $all += $diff;
32 | echo sprintf('(%.1f)', $diff).'
';
33 | }
34 |
35 | echo '
-------------------------
';
36 | echo 'min: ' . $min . '
';
37 | echo 'max: ' . $max . '
';
38 |
39 | echo '
avg: ' . $all/$count . '
';
40 | ?>
--------------------------------------------------------------------------------
/assets/css/jquery.countdownTimer.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | * Author - Harshen Amarnath Pandey
4 | * Version - 1.0.8
5 | * Release - 18th April 2015
6 | * Copyright (c) 2014 - 2018 Harshen Pandey
7 | */
8 |
9 | /* jquery.countdownTimer.css*/
10 |
11 | .style {
12 | width: 100%;
13 | font-family: sans-serif;
14 | font-weight: bold;
15 | border-style: solid;
16 | }
17 |
18 | .colorDefinition {
19 | background: #000000;
20 | color : #FFFFFF;
21 | border-color: #F0068E;
22 | }
23 |
24 | .size_xl {
25 | font-size:50px;
26 | border-width: 8px;
27 | border-radius: 6px;
28 | }
29 |
30 | .size_lg {
31 | font-size:40px;
32 | border-width: 7px;
33 | border-radius: 5px;
34 | }
35 |
36 | .size_md {
37 | font-size:30px;
38 | border-width: 5px;
39 | border-radius: 4px;
40 | }
41 |
42 | .size_sm {
43 | font-size:20px;
44 | border-width: 3px;
45 | border-radius: 3px;
46 | }
47 |
48 | .size_xs {
49 | font-size:15px;
50 | border-width: 2px;
51 | border-radius: 2px;
52 | }
53 |
54 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/.svn/text-base/example_scraping_slashdot.php.svn-base:
--------------------------------------------------------------------------------
1 | find('div[id^=firehose-]') as $article) {
10 | // get title
11 | $item['title'] = trim($article->find('a.datitle', 0)->plaintext);
12 | // get body
13 | $item['body'] = trim($article->find('div.body', 0)->plaintext);
14 |
15 | $ret[] = $item;
16 | }
17 |
18 | // clean up memory
19 | $html->clear();
20 | unset($html);
21 |
22 | return $ret;
23 | }
24 |
25 | // -----------------------------------------------------------------------------
26 | // test it!
27 | $ret = scraping_slashdot();
28 |
29 | foreach($ret as $v) {
30 | echo $v['title'].'
';
31 | echo '';
32 | echo '- '.$v['body'].'
';
33 | echo '
';
34 | }
35 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/example_scraping_slashdot.php:
--------------------------------------------------------------------------------
1 | find('div[id^=firehose-]') as $article) {
10 | // get title
11 | $item['title'] = trim($article->find('a.datitle', 0)->plaintext);
12 | // get body
13 | $item['body'] = trim($article->find('div.body', 0)->plaintext);
14 |
15 | $ret[] = $item;
16 | }
17 |
18 | // clean up memory
19 | $html->clear();
20 | unset($html);
21 |
22 | return $ret;
23 | }
24 |
25 | // -----------------------------------------------------------------------------
26 | // test it!
27 | $ret = scraping_slashdot();
28 |
29 | foreach($ret as $v) {
30 | echo $v['title'].'
';
31 | echo '';
32 | echo '- '.$v['body'].'
';
33 | echo '
';
34 | }
35 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/slick_test.php:
--------------------------------------------------------------------------------
1 |
';
11 |
12 | assert(count($html->find('#title'))==1);
13 | assert(count($html->find('div'))==51);
14 | assert(count($html->find('div[class]'))==51);
15 | assert(count($html->find('div.example'))==43);
16 | assert(count($html->find('div[class=example]'))==43);
17 | assert(count($html->find('.note'))==14);
18 |
19 | assert(count($html->find('div[class^=exa]'))==43);
20 | assert(count($html->find('div[class$=mple]'))==43);
21 | assert(count($html->find('div[class*=e]'))==50);
22 | assert(count($html->find('div[class!=made_up]'))==51);
23 |
24 | assert(count($html->find('p'))==324);
25 |
26 | echo 'All pass!
';
27 | ?>
--------------------------------------------------------------------------------
/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/libraries/simplehtmldom/manual/css/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/manual/css
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-06-24T22:59:40.092528Z
11 | 120
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | default.css
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:53.530296Z
36 | 2f01e1ff8a4fa8fe63c8be8e17800ab0
37 | 2008-06-24T22:59:40.092528Z
38 | 120
39 | me578022
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 2069
62 |
63 | ui.tabs.css
64 | file
65 |
66 |
67 |
68 |
69 | 2010-08-17T19:13:53.531296Z
70 | 995c002d1908567d7542ec9c2adfdc65
71 | 2008-03-14T14:58:12.908404Z
72 | 29
73 | me578022
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 | 3833
96 |
97 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/text-base/slick_test.php.svn-base:
--------------------------------------------------------------------------------
1 |
';
11 |
12 | assert(count($html->find('#title'))==1);
13 | assert(count($html->find('div'))==51);
14 | assert(count($html->find('div[class]'))==51);
15 | assert(count($html->find('div.example'))==43);
16 | assert(count($html->find('div[class=example]'))==43);
17 | assert(count($html->find('.note'))==14);
18 |
19 | assert(count($html->find('div[class^=exa]'))==43);
20 | assert(count($html->find('div[class$=mple]'))==43);
21 | assert(count($html->find('div[class*=e]'))==50);
22 | assert(count($html->find('div[class!=made_up]'))==51);
23 |
24 | assert(count($html->find('p'))==324);
25 |
26 | echo 'All pass!
';
27 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/js/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/manual/js
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-03-14T14:58:12.908404Z
11 | 29
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | jquery-1.2.3.pack.js
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:53.654303Z
36 | fb49bb7a70d7be19cc6a145146ca7d44
37 | 2008-03-14T14:58:12.908404Z
38 | 29
39 | me578022
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 29846
62 |
63 | ui.tabs.pack.js
64 | file
65 |
66 |
67 |
68 |
69 | 2010-08-17T19:13:53.655303Z
70 | 14b07b37095bc686e405e7d043fee344
71 | 2008-03-14T14:58:12.908404Z
72 | 29
73 | me578022
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 | 6417
96 |
97 |
--------------------------------------------------------------------------------
/application/views/welcome.php:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 | Welcome session->userdata('displayname');?>
11 |
12 |
13 |
14 | load->view('sidebar');?>
15 |
16 |
17 |
18 |
Profile Summary
19 |
20 |
21 |
22 |
23 |
24 |
Score Card
25 |
Total Quiz Score
26 |
%
27 |
Total Quiz Taken -
28 |
Check Detail
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/js/images/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/app/js/images
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-12-14T19:02:48.351607Z
11 | 176
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | treeview-default.gif
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:52.297225Z
36 | 46878a9b3ede269c4e234550c9c89cd0
37 | 2008-12-14T19:02:48.351607Z
38 | 176
39 | me578022
40 | has-props
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 1222
62 |
63 | treeview-default-line.gif
64 | file
65 |
66 |
67 |
68 |
69 | 2010-08-17T19:13:52.303226Z
70 | 5e3c0e0c48f48c23c45aef7b72c739c0
71 | 2008-12-14T19:02:48.351607Z
72 | 176
73 | me578022
74 | has-props
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 | 1993
96 |
97 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2017 Facebook, Inc.
2 |
3 | You are hereby granted a non-exclusive, worldwide, royalty-free license to
4 | use, copy, modify, and distribute this software in source code or binary
5 | form for use in connection with the web services and APIs provided by
6 | Facebook.
7 |
8 | As with any software that integrates with the Facebook platform, your use
9 | of this software is subject to the Facebook Developer Principles and
10 | Policies [http://developers.facebook.com/policy/]. This copyright notice
11 | shall be included in all copies or substantial portions of the software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19 | DEALINGS IN THE SOFTWARE.
20 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/simple_html_dom_utility.php:
--------------------------------------------------------------------------------
1 | find('comment') as $e)
12 | $e->outertext = '';
13 |
14 | $ret = $html->save();
15 |
16 | // clean up memory
17 | $html->clear();
18 | unset($html);
19 |
20 | return $ret;
21 | }
22 |
23 | // -----------------------------------------------------------------------------
24 | // search elements that contains an specific text
25 | function find_contains($html, $selector, $keyword, $index=-1) {
26 | $ret = array();
27 | foreach ($html->find($selector) as $e) {
28 | if (strpos($e->innertext, $keyword)!==false)
29 | $ret[] = $e;
30 | }
31 |
32 | if ($index<0) return $ret;
33 | return (isset($ret[$index])) ? $ret[$index] : null;
34 | }
35 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/simple_html_dom_utility.php.svn-base:
--------------------------------------------------------------------------------
1 | find('comment') as $e)
12 | $e->outertext = '';
13 |
14 | $ret = $html->save();
15 |
16 | // clean up memory
17 | $html->clear();
18 | unset($html);
19 |
20 | return $ret;
21 | }
22 |
23 | // -----------------------------------------------------------------------------
24 | // search elements that contains an specific text
25 | function find_contains($html, $selector, $keyword, $index=-1) {
26 | $ret = array();
27 | foreach ($html->find($selector) as $e) {
28 | if (strpos($e->innertext, $keyword)!==false)
29 | $ret[] = $e;
30 | }
31 |
32 | if ($index<0) return $ret;
33 | return (isset($ret[$index])) ? $ret[$index] : null;
34 | }
35 | ?>
--------------------------------------------------------------------------------
/application/models/Subscription_model.php:
--------------------------------------------------------------------------------
1 | db->query("SELECT * FROM subscription WHERE valid_upto > ? AND user_id = ? AND plan_id = ?",array($date,$userId,$planId));
7 | //echo $this->db->last_query();
8 | if($query->num_rows() > 0){
9 | return true;
10 | }
11 | }
12 |
13 | function paid_subscribers(){
14 | $query = $this->db->select('subscription.*,CONCAT(userDetail.first_name," ",userDetail.last_name) as fullName,status.status_name as statusName,subscription_plans.plan_title as plan_title')
15 | ->from('subscription')
16 | ->join('userDetail','userDetail.user_id=subscription.user_id','left')
17 | ->join('subscription_plans','subscription_plans.id=subscription.plan_id','left')
18 | ->join('status','status.id=subscription.status','left')
19 | ->get();
20 | if($query->num_rows() > 0){
21 | return $query->result_array();
22 | }
23 | }
24 |
25 |
26 | }
27 | ?>
28 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/app/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/app
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2009-02-23T09:04:02.699587Z
11 | 179
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | google.htm
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:52.500237Z
36 | 72a16a066c5a729cd5ddaf6e39082b05
37 | 2009-02-23T09:04:02.699587Z
38 | 179
39 | me578022
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 60128
62 |
63 | js
64 | dir
65 |
66 | index.php
67 | file
68 |
69 |
70 |
71 |
72 | 2010-08-17T19:13:52.502237Z
73 | 3793524c0c846be09274b428d4972b60
74 | 2008-12-14T19:02:48.351607Z
75 | 176
76 | me578022
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 | 4496
99 |
100 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/all-wcprops:
--------------------------------------------------------------------------------
1 | K 25
2 | svn:wc:ra_dav:version-url
3 | V 49
4 | /svnroot/simplehtmldom/!svn/ver/169/trunk/example
5 | END
6 | example_extract_html.php
7 | K 25
8 | svn:wc:ra_dav:version-url
9 | V 74
10 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/example_extract_html.php
11 | END
12 | example_basic_selector.php
13 | K 25
14 | svn:wc:ra_dav:version-url
15 | V 76
16 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/example_basic_selector.php
17 | END
18 | example_modify_contents.php
19 | K 25
20 | svn:wc:ra_dav:version-url
21 | V 77
22 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/example_modify_contents.php
23 | END
24 | simple_html_dom_utility.php
25 | K 25
26 | svn:wc:ra_dav:version-url
27 | V 77
28 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/simple_html_dom_utility.php
29 | END
30 | example_advanced_selector.php
31 | K 25
32 | svn:wc:ra_dav:version-url
33 | V 79
34 | /svnroot/simplehtmldom/!svn/ver/133/trunk/example/example_advanced_selector.php
35 | END
36 | example_callback.php
37 | K 25
38 | svn:wc:ra_dav:version-url
39 | V 70
40 | /svnroot/simplehtmldom/!svn/ver/134/trunk/example/example_callback.php
41 | END
42 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/example_basic_selector.php:
--------------------------------------------------------------------------------
1 | find('a') as $e)
10 | echo $e->href . '
';
11 |
12 | // find all image
13 | foreach($html->find('img') as $e)
14 | echo $e->src . '
';
15 |
16 | // find all image with full tag
17 | foreach($html->find('img') as $e)
18 | echo $e->outertext . '
';
19 |
20 | // find all div tags with id=gbar
21 | foreach($html->find('div#gbar') as $e)
22 | echo $e->innertext . '
';
23 |
24 | // find all span tags with class=gb1
25 | foreach($html->find('span.gb1') as $e)
26 | echo $e->outertext . '
';
27 |
28 | // find all td tags with attribite align=center
29 | foreach($html->find('td[align=center]') as $e)
30 | echo $e->innertext . '
';
31 |
32 | // extract text from table
33 | echo $html->find('td[align="center"]', 1)->plaintext.'
';
34 |
35 | // extract text from HTML
36 | echo $html->plaintext;
37 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/example_basic_selector.php.svn-base:
--------------------------------------------------------------------------------
1 | find('a') as $e)
10 | echo $e->href . '
';
11 |
12 | // find all image
13 | foreach($html->find('img') as $e)
14 | echo $e->src . '
';
15 |
16 | // find all image with full tag
17 | foreach($html->find('img') as $e)
18 | echo $e->outertext . '
';
19 |
20 | // find all div tags with id=gbar
21 | foreach($html->find('div#gbar') as $e)
22 | echo $e->innertext . '
';
23 |
24 | // find all span tags with class=gb1
25 | foreach($html->find('span.gb1') as $e)
26 | echo $e->outertext . '
';
27 |
28 | // find all td tags with attribite align=center
29 | foreach($html->find('td[align=center]') as $e)
30 | echo $e->innertext . '
';
31 |
32 | // extract text from table
33 | echo $html->find('td[align="center"]', 1)->plaintext.'
';
34 |
35 | // extract text from HTML
36 | echo $html->plaintext;
37 | ?>
--------------------------------------------------------------------------------
/assets/assets/css/homestyle.css:
--------------------------------------------------------------------------------
1 | html,
2 | body,
3 | header,
4 | #intro {
5 | height: 100%;
6 | }
7 |
8 | #intro {
9 | background: url("../img/backdrop/access-adult-bag-936081.jpg") no-repeat
10 | center center fixed;
11 | -webkit-background-size: cover;
12 | -moz-background-size: cover;
13 | -o-background-size: cover;
14 | background-size: cover;
15 | }
16 |
17 | .counter {
18 | width: 20px;
19 | height: 20px;
20 | background: black;
21 | color: #fff;
22 | position: fixed;
23 | top: 120px;
24 | right: 0;
25 | }
26 |
27 | /* Half Page Carousel itself*/
28 | .carousel {
29 | height: 50%;
30 | }
31 | .carousel .carousel-inner {
32 | height: 100%;
33 | }
34 | .carousel .carousel-inner .carousel-item,
35 | .carousel .carousel-inner .active {
36 | height: 100%;
37 | }
38 |
39 | .top-nav-collapse {
40 | background-color: black;
41 | }
42 | @media (max-width: 768px) {
43 | .navbar:not(.top-nav-collapse) {
44 | background-color: black;
45 | }
46 | }
47 | @media (min-width: 800px) and (max-width: 850px) {
48 | .navbar:not(.top-nav-collapse) {
49 | background-color: black;
50 | }
51 | }
52 |
53 | /* Adjustment for mobile devices*/
54 | @media (max-width: 776px) {
55 | .carousel {
56 | height: 40%;
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/.svn/text-base/example_scraping_digg.php.svn-base:
--------------------------------------------------------------------------------
1 | find('div.news-summary') as $article) {
10 | // get title
11 | $item['title'] = trim($article->find('h3', 0)->plaintext);
12 | // get details
13 | $item['details'] = trim($article->find('p', 0)->plaintext);
14 | // get intro
15 | $item['diggs'] = trim($article->find('li a strong', 0)->plaintext);
16 |
17 | $ret[] = $item;
18 | }
19 |
20 | // clean up memory
21 | $html->clear();
22 | unset($html);
23 |
24 | return $ret;
25 | }
26 |
27 |
28 | // -----------------------------------------------------------------------------
29 | // test it!
30 |
31 | // "http://digg.com" will check user_agent header...
32 | ini_set('user_agent', 'My-Application/2.5');
33 |
34 | $ret = scraping_digg();
35 |
36 | foreach($ret as $v) {
37 | echo $v['title'].'
';
38 | echo '';
39 | echo '- '.$v['details'].'
';
40 | echo '- Diggs: '.$v['diggs'].'
';
41 | echo '
';
42 | }
43 |
44 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/example_scraping_digg.php:
--------------------------------------------------------------------------------
1 | find('div.news-summary') as $article) {
10 | // get title
11 | $item['title'] = trim($article->find('h3', 0)->plaintext);
12 | // get details
13 | $item['details'] = trim($article->find('p', 0)->plaintext);
14 | // get intro
15 | $item['diggs'] = trim($article->find('li a strong', 0)->plaintext);
16 |
17 | $ret[] = $item;
18 | }
19 |
20 | // clean up memory
21 | $html->clear();
22 | unset($html);
23 |
24 | return $ret;
25 | }
26 |
27 |
28 | // -----------------------------------------------------------------------------
29 | // test it!
30 |
31 | // "http://digg.com" will check user_agent header...
32 | ini_set('user_agent', 'My-Application/2.5');
33 |
34 | $ret = scraping_digg();
35 |
36 | foreach($ret as $v) {
37 | echo $v['title'].'
';
38 | echo '';
39 | echo '- '.$v['details'].'
';
40 | echo '- Diggs: '.$v['diggs'].'
';
41 | echo '
';
42 | }
43 |
44 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/.svn/text-base/performance_test.php.svn-base:
--------------------------------------------------------------------------------
1 | load($str, false);
19 | list($eu, $es) = explode(' ', microtime());
20 | list($bu, $bs) = explode(' ', $start);
21 |
22 | if (((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000 > $max)
23 | $max = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
24 |
25 | if (((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000 < $min)
26 | $min = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
27 |
28 | $all += ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
29 | echo sprintf('(%.1f)', ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000).'
';
30 | $dom->clear();
31 | }
32 |
33 | echo '
-------------------------
';
34 | echo 'min: ' . $min . '
';
35 | echo 'max: ' . $max . '
';
36 |
37 | echo '
avg: ' . $all/$count . '
';
38 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/reader/performance_test.php:
--------------------------------------------------------------------------------
1 | load($str, false);
19 | list($eu, $es) = explode(' ', microtime());
20 | list($bu, $bs) = explode(' ', $start);
21 |
22 | if (((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000 > $max)
23 | $max = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
24 |
25 | if (((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000 < $min)
26 | $min = ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
27 |
28 | $all += ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000;
29 | echo sprintf('(%.1f)', ((float)$eu+(float)$es-(float)$bu-(float)$bs)*1000).'
';
30 | $dom->clear();
31 | }
32 |
33 | echo '
-------------------------
';
34 | echo 'min: ' . $min . '
';
35 | echo 'max: ' . $max . '
';
36 |
37 | echo '
avg: ' . $all/$count . '
';
38 | ?>
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "facebook/graph-sdk",
3 | "description": "Facebook SDK for PHP",
4 | "keywords": ["facebook", "sdk"],
5 | "type": "library",
6 | "homepage": "https://github.com/facebook/php-graph-sdk",
7 | "license": "Facebook Platform",
8 | "authors": [
9 | {
10 | "name": "Facebook",
11 | "homepage": "https://github.com/facebook/php-graph-sdk/contributors"
12 | }
13 | ],
14 | "require": {
15 | "php": "^5.4|^7.0"
16 | },
17 | "require-dev": {
18 | "phpunit/phpunit": "~4.0",
19 | "mockery/mockery": "~0.8",
20 | "guzzlehttp/guzzle": "~5.0"
21 | },
22 | "suggest": {
23 | "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5",
24 | "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client"
25 | },
26 | "autoload": {
27 | "psr-4": {
28 | "Facebook\\": "src/Facebook/"
29 | },
30 | "files": ["src/Facebook/polyfills.php"]
31 | },
32 | "autoload-dev": {
33 | "psr-4": {
34 | "Facebook\\Tests\\": "tests/"
35 | }
36 | },
37 | "extra": {
38 | "branch-alias": {
39 | "dev-master": "5.x-dev"
40 | }
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/assets/js/script.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | $('.chapterDelete').click(function(){
3 | $('.chapterDeletePop').modal('show');
4 | $('.modalDeleteLink').attr('href',$(this).data('delete'));
5 | });
6 | $('.no_of_questions').change(function(){
7 | $('#selectedQuestionCount').html($(this).val());
8 | });
9 |
10 | $('.changePassword').click(function(){
11 | if($('#new_password').val() == "" || $('#new_password').val() == null){
12 | //$('#new_password').css({"background-color:#e83e8c"});
13 | alert("Empty Password Field");
14 | }else{
15 | $.post('../welcome/passwordChangeAjax',{ new_password : $('#new_password').val() },function(data,status){
16 | $('#passwordChangeAlert').html(data).show();
17 | });
18 | }
19 | });
20 |
21 | $('#checkUsername').click(function(){
22 | $.post('../welcome/isUsernameAvailable',{ username : $('.usernameProfile') },function(data,status){
23 | $('#checkUsernameAlert').html(data).show();
24 | });
25 | });
26 |
27 | $('#checkEmail').click(function(){
28 | $.post('../welcome/isEmailAvailable',{ email : $('.emailProfile') },function(data,status){
29 | $('#checkEmailAlert').html(data).show();
30 | });
31 | });
32 |
33 |
34 |
35 |
36 |
37 |
38 | });
39 |
--------------------------------------------------------------------------------
/application/controllers/admin/Welcome.php:
--------------------------------------------------------------------------------
1 | load->model('report_model');
10 | }
11 |
12 | function index(){
13 | $data['userReports'] = [
14 | 'total_user' => $this->report_model->total_user(),
15 | 'blocked_user' => $this->report_model->blocked_user(),
16 | 'online_user' => $this->report_model->online_user()
17 | ] ;
18 | $data['quizReports'] = [
19 | 'total_quiz' => $this->report_model->total_quiz(),
20 | 'total_questions' => $this->report_model->total_questions(),
21 | 'total_answers_given' => $this->report_model->total_answers_given()
22 | ] ;
23 | $data['courseReports'] = [
24 | 'total_course' => $this->report_model->total_course(),
25 | 'total_course_subscribed' => $this->report_model->total_course_subscribed()
26 | ];
27 | $data['paymentReports'] = [
28 | 'total_payment' => $this->report_model->total_payment(),
29 | 'pending_payment' => $this->report_model->pending_payment(),
30 | 'failed_payment' => $this->report_model->failed_payment()
31 | ];
32 | // print_r($data);die;
33 | $this->page(array_merge(['page' => 'admin/dashboard'],$data));
34 | }
35 |
36 |
37 |
38 |
39 |
40 | }
41 | ?>
42 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/FileUpload/FacebookVideo.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_db.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Database Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/ajax/generateDynamicQuizData.php:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 | :
15 |
16 |
17 |
18 |
19 |
20 |
21 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | Sorry There is limited quiz data in the backend
35 |
36 |
37 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_404.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | 404 Page Not Found
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/GraphNodes/GraphList.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Admin
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
32 |
33 |
34 | load->view('template/sidebar');?>
35 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/.svn/text-base/example_scraping_imdb.php.svn-base:
--------------------------------------------------------------------------------
1 | find('title', 0)->innertext;
10 |
11 | // get rating
12 | $ret['Rating'] = $html->find('div[class="general rating"] b', 0)->innertext;
13 |
14 | // get overview
15 | foreach($html->find('div[class="info"]') as $div) {
16 | // skip user comments
17 | if($div->find('h5', 0)->innertext=='User Comments:')
18 | return $ret;
19 |
20 | $key = '';
21 | $val = '';
22 |
23 | foreach($div->find('*') as $node) {
24 | if ($node->tag=='h5')
25 | $key = $node->plaintext;
26 |
27 | if ($node->tag=='a' && $node->plaintext!='more')
28 | $val .= trim(str_replace("\n", '', $node->plaintext));
29 |
30 | if ($node->tag=='text')
31 | $val .= trim(str_replace("\n", '', $node->plaintext));
32 | }
33 |
34 | $ret[$key] = $val;
35 | }
36 |
37 | // clean up memory
38 | $html->clear();
39 | unset($html);
40 |
41 | return $ret;
42 | }
43 |
44 |
45 | // -----------------------------------------------------------------------------
46 | // test it!
47 | $ret = scraping_IMDB('http://imdb.com/title/tt0335266/');
48 |
49 | foreach($ret as $k=>$v)
50 | echo '
'.$k.' '.$v.'
';
51 | ?>
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/Url/UrlDetectionInterface.php:
--------------------------------------------------------------------------------
1 | db->select($tableName.'.*,status.status_name')
11 | ->from($tableName)
12 | ->join('status',$tableName.'.status = status.id','left')
13 | ->get();
14 | return $query->result_array();
15 | }
16 |
17 | function getAllRecordNoJoin($tableName){
18 | $query = $this->db->select($tableName.'.*')
19 | ->from($tableName)
20 | ->get();
21 | return $query->result_array();
22 | }
23 |
24 | function getOneRecord($tableName,$query){
25 | $query = $this->db->select('*')
26 | ->from($tableName)
27 | ->where($query)
28 | ->get();
29 | return $query->result_array();
30 | }
31 |
32 | function create($tableName,$insertArray){
33 | $this->db->insert($tableName,$insertArray);
34 | return true;
35 | }
36 |
37 | function update($tableName,$query,$updateArray){
38 | $this->db->where($query);
39 | $this->db->update($tableName,$updateArray);
40 | return true;
41 | }
42 |
43 | function delete($tableName,$query){
44 | $this->db->where($query);
45 | $this->db->delete($tableName);
46 | return true;
47 | }
48 |
49 |
50 | }
51 | ?>
52 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/example/scraping
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-10-29T19:08:25.076520Z
11 | 169
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | example_scraping_digg.php
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:52.895260Z
36 | bd67cef1e4729067a8fef9aff1a61dc3
37 | 2008-07-25T12:31:14.828880Z
38 | 133
39 | me578022
40 | has-props
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 1059
62 |
63 | example_scraping_imdb.php
64 | file
65 |
66 |
67 |
68 |
69 | 2010-08-17T19:13:52.901260Z
70 | 477179278b3752eccc5c286a0754e014
71 | 2008-07-25T12:31:14.828880Z
72 | 133
73 | me578022
74 | has-props
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 | 1311
96 |
97 | example_scraping_slashdot.php
98 | file
99 |
100 |
101 |
102 |
103 | 2010-08-17T19:13:52.909260Z
104 | f3996448238646b8e76006da56fa42d2
105 | 2008-10-29T19:08:25.076520Z
106 | 169
107 | me578022
108 | has-props
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 | 829
130 |
131 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/scraping/example_scraping_imdb.php:
--------------------------------------------------------------------------------
1 | find('title', 0)->innertext;
10 |
11 | // get rating
12 | $ret['Rating'] = $html->find('div[class="general rating"] b', 0)->innertext;
13 |
14 | // get overview
15 | foreach($html->find('div[class="info"]') as $div) {
16 | // skip user comments
17 | if($div->find('h5', 0)->innertext=='User Comments:')
18 | return $ret;
19 |
20 | $key = '';
21 | $val = '';
22 |
23 | foreach($div->find('*') as $node) {
24 | if ($node->tag=='h5')
25 | $key = $node->plaintext;
26 |
27 | if ($node->tag=='a' && $node->plaintext!='more')
28 | $val .= trim(str_replace("\n", '', $node->plaintext));
29 |
30 | if ($node->tag=='text')
31 | $val .= trim(str_replace("\n", '', $node->plaintext));
32 | }
33 |
34 | $ret[$key] = $val;
35 | }
36 |
37 | // clean up memory
38 | $html->clear();
39 | unset($html);
40 |
41 | return $ret;
42 | }
43 |
44 |
45 | // -----------------------------------------------------------------------------
46 | // test it!
47 | $ret = scraping_IMDB('http://imdb.com/title/tt0335266/');
48 |
49 | foreach($ret as $k=>$v)
50 | echo '
'.$k.' '.$v.'
';
51 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/manual/.svn/entries:
--------------------------------------------------------------------------------
1 | 10
2 |
3 | dir
4 | 182
5 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom/trunk/manual
6 | https://simplehtmldom.svn.sourceforge.net/svnroot/simplehtmldom
7 |
8 |
9 |
10 | 2008-10-20T21:14:53.811160Z
11 | 165
12 | me578022
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | d0e60b4b-9046-0410-940c-b97530268c78
28 |
29 | manual.htm
30 | file
31 |
32 |
33 |
34 |
35 | 2010-08-17T19:13:53.692305Z
36 | 299f58f40c40054c245399752d7164ec
37 | 2008-10-20T21:14:53.811160Z
38 | 165
39 | me578022
40 | has-props
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | 24678
62 |
63 | css
64 | dir
65 |
66 | manual_faq.htm
67 | file
68 |
69 |
70 |
71 |
72 | 2010-08-17T19:13:53.698306Z
73 | 2d0d134462e6bf404b93d7f8eefe2767
74 | 2008-10-20T21:14:53.811160Z
75 | 165
76 | me578022
77 | has-props
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 | 4818
99 |
100 | img
101 | dir
102 |
103 | js
104 | dir
105 |
106 | manual_api.htm
107 | file
108 |
109 |
110 |
111 |
112 | 2010-08-17T19:13:53.705306Z
113 | 3ff73eb882e61bd23b87c6cc0ba743b4
114 | 2008-10-20T21:14:53.811160Z
115 | 165
116 | me578022
117 | has-props
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 | 11505
139 |
140 |
--------------------------------------------------------------------------------
/application/views/membership-plan.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
34 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/GraphNodes/GraphApplication.php:
--------------------------------------------------------------------------------
1 | getField('id');
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/application/core/Base.php:
--------------------------------------------------------------------------------
1 | load->model('crud_model');
10 | $this->load->model('user_model');
11 | $this->accountStatus();
12 | $this->isUserLogged();
13 | }
14 |
15 | function all($table){
16 | return $this->crud_model->getAllRecord($table);
17 | }
18 |
19 | function allNoJoin($table){
20 | return $this->crud_model->getAllRecordNoJoin($table);
21 | }
22 |
23 | function one($table,$query){
24 | return $this->crud_model->getOneRecord($table,$query);
25 | }
26 |
27 | function create($table,$query){
28 | return $this->crud_model->create($table,$query);
29 | }
30 |
31 | function update($tableName,$query,$updateArray){
32 | return $this->crud_model->update($tableName,$query,$updateArray);
33 | }
34 |
35 | function remove($tableName,$query){
36 | return $this->crud_model->delete($tableName,$query);
37 | }
38 |
39 | function page($array){
40 | return $this->load->view('template/content',$array);
41 | }
42 |
43 | function accountStatus(){
44 | if($this->session->userdata('userId') || $this->session->userdata('adminId')){
45 | $status = $this->user_model->accountStatus($this->session->userdata('userId'));
46 | if($status == 'blocked' && $this->session->userdata('rolename') == "customer"){
47 | redirect('Home/blockedUser');
48 | }
49 | }
50 | }
51 |
52 | function isUserLogged(){
53 | if(!$this->session->userdata('userId') && !$this->session->userdata('adminId')){
54 | redirect('auth/login');
55 | }
56 | }
57 |
58 |
59 | }
60 | ?>
61 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/Helpers/FacebookJavaScriptHelper.php:
--------------------------------------------------------------------------------
1 | getRawSignedRequestFromCookie();
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/application/controllers/Courses.php:
--------------------------------------------------------------------------------
1 | load->model('courses_model');
11 | $this->load->model('report_model');
12 | $this->load->helper('common');
13 | $data['reports'] = [
14 | 'total_course' => $this->report_model->total_course(),
15 | 'total_quiz' => $this->report_model->total_questions(),
16 | 'quiz_taken' => $this->report_model->quiz_taken(),
17 | 'course_taken' => $this->report_model->course_taken()
18 | ];
19 | $this->common = $data;
20 | }
21 |
22 | public function index()
23 | {
24 | $data['courses'] = $this->courses_model->trendingCoursesByCategory();
25 | $this->page(array_merge([
26 | 'page' => 'course'
27 | ],$this->common,$data));
28 | }
29 |
30 | public function search(){
31 | if($this->uri->segment(3)){
32 | $course_name = $this->uri->segment(3);
33 | $output = $this->one('course',['course_name' => $course_name]);
34 | $this->page([
35 | 'page' => 'course-detail',
36 | 'data' => $output
37 | ]);
38 | }
39 | }
40 |
41 | public function searchCourseAjax(){
42 | $text = $this->input->post('text');
43 | $out = $this->courses_model->searchCourse($text);
44 | if(is_array($out)){
45 | foreach($out as $r){
46 | echo '
'.$r['course_title'].'';
47 | }
48 | }else{
49 | echo '
No Course Found';
50 | }
51 | }
52 |
53 | }
54 |
--------------------------------------------------------------------------------
/application/controllers/admin/Payment.php:
--------------------------------------------------------------------------------
1 | load->model('payment_model');
7 | }
8 |
9 | function index(){
10 | $data = array();
11 | if($this->uri->segment(3)=="delete"){
12 | $this->remove('setting',['id' => $this->uri->segment(4)]);
13 | $this->session->set_flashdata('alert','
Payment detail deleted
');
14 | redirect('admin/payment');
15 | }
16 | if($this->input->post('edit')){
17 | $this->update('payment',['id' => $this->uri->segment(4)],[
18 | 'gateway' => $this->input->post('gateway'),
19 | 'subscription_id' => $this->input->post('subscription_id'),
20 | 'user_id' => $this->input->post('user_id'),
21 | 'plan_id' => $this->input->post('plan_id'),
22 | 'created' => date('d-m-y h:i:s'),
23 | 'updated' => date('d-m-y h:i:s'),
24 | 'status' => $this->input->post('status')
25 | ]);
26 | $this->session->set_flashdata('alert','
Payment Detail Updated
');
27 | redirect('admin/payment');
28 | }
29 | $section = $this->uri->segment(3) ? $this->uri->segment(3) : 'list';
30 | if($section == 'list'){
31 | $data['list'] = $this->all('payment');
32 | }
33 | if($section == 'edit' || $section == 'view'){
34 | $data['one'] = $this->one('payment',['id' => $this->uri->segment(4)]);
35 | }
36 | $this->page(array_merge([
37 | 'section' => $section,
38 | 'page' => 'admin/payment',
39 | 'status' => $this->allNoJoin('status')
40 | ],$data));
41 | }
42 |
43 | }
44 | ?>
45 |
--------------------------------------------------------------------------------
/assets/assets/css/application.css:
--------------------------------------------------------------------------------
1 | /*
2 | * Application level styles
3 | * (things that dont make sense in a toolkit :)
4 | * copyright @colossal 2018
5 | */
6 |
7 | /* docs overrides */
8 | .highlight {
9 | background-color: #fff;
10 | border-color: #d3e0e9;
11 | }
12 |
13 |
14 | /* general overrides */
15 | .list-group-item .glyphicon {
16 | line-height: 1.4;
17 | }
18 | .modal-header .close {
19 | padding-top: 1.4rem;
20 | }
21 | strong {
22 | font-weight: bold;
23 | }
24 |
25 |
26 | /* navbar */
27 | .app-navbar {
28 | font-weight: 400;
29 | -webkit-font-smoothing: antialiased;
30 | }
31 | .app-navbar .form-control {
32 | box-shadow: none;
33 | }
34 | .app-navbar .navbar-brand img {
35 | width: 85px;
36 | }
37 | .app-navbar .navbar-collapse {
38 | max-height: inherit;
39 | }
40 | .app-navbar .navbar-collapse:after {
41 | height: 100vh;
42 | }
43 | .app-navbar .form-control {
44 | border-color: #1C73A5;
45 | }
46 | .app-navbar .app-notifications {
47 | margin-left: 1rem;
48 | padding-bottom: 4px !important;
49 | padding-top: 4px !important;
50 | }
51 | .app-notifications .icon:before {
52 | font-size: 20px;
53 | }
54 | @media (min-width: 768px) {
55 | .app-navbar .navbar-collapse:after {
56 | height: auto;
57 | }
58 | }
59 | @media (max-width: 768px) {
60 | .app-search {
61 | margin-top: -1px;
62 | }
63 | }
64 |
65 |
66 | /* misc */
67 | .app-login-form {
68 | max-width: 280px;
69 | margin-top: 20px;
70 | margin-bottom: 100px;
71 | }
72 | .app-new-msg {
73 | margin-right: 10px;
74 | }
75 | .app-brand {
76 | width: 40%;
77 | display: inline-block;
78 | }
79 | .app-brand img {
80 | width: 100%;
81 | }
82 |
83 | #txt {
84 | text-transform:lowercase;
85 | }
86 |
87 | #signUpWith{
88 | margin-left: 50px;
89 | }
90 |
--------------------------------------------------------------------------------
/assets/assets/css/landing-page.min.css:
--------------------------------------------------------------------------------
1 | body{font-family:Lato,'Helvetica Neue',Helvetica,Arial,sans-serif}h1,h2,h3,h4,h5,h6{font-family:Lato,'Helvetica Neue',Helvetica,Arial,sans-serif;font-weight:700}header.masthead{position:relative;background-color:#343a40;background:url(../img/busy-friends-working_925x.jpg) no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:8rem;padding-bottom:8rem}header.masthead .overlay{position:absolute;background-color:#212529;height:100%;width:100%;top:0;left:0;opacity:.3}header.masthead h1{font-size:2rem}@media (min-width:768px){header.masthead{padding-top:12rem;padding-bottom:12rem}header.masthead h1{font-size:3rem}}.showcase .showcase-text{padding:3rem}.showcase .showcase-img{min-height:30rem;background-size:cover}@media (min-width:768px){.showcase .showcase-text{padding:7rem}}.features-icons{padding-top:7rem;padding-bottom:7rem}.features-icons .features-icons-item{max-width:20rem}.features-icons .features-icons-item .features-icons-icon{height:7rem}.features-icons .features-icons-item .features-icons-icon i{font-size:4.5rem}.features-icons .features-icons-item:hover .features-icons-icon i{font-size:5rem}.testimonials{padding-top:7rem;padding-bottom:7rem}.testimonials .testimonial-item{max-width:18rem}.testimonials .testimonial-item img{max-width:12rem;box-shadow:0 5px 5px 0 #adb5bd}.call-to-action{position:relative;background-color:#343a40;background:url(../img/bg-masthead.jpg) no-repeat center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-top:7rem;padding-bottom:7rem}.call-to-action .overlay{position:absolute;background-color:#212529;height:100%;width:100%;top:0;left:0;opacity:.3}footer.footer{padding-top:4rem;padding-bottom:4rem}
2 |
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/example_advanced_selector.php:
--------------------------------------------------------------------------------
1 |
9 |
12 |
13 | HTML;
14 |
15 | $html = str_get_html($str);
16 | echo $html->find('div div div', 0)->innertext . '
'; // result: "ok"
17 |
18 | // -----------------------------------------------------------------------------
19 | // nested selector
20 | $str = <<
22 |
item:1
23 |
item:2
24 |
25 |
26 | - item:3
27 | - item:4
28 |
29 | HTML;
30 |
31 | $html = str_get_html($str);
32 | foreach($html->find('ul') as $ul) {
33 | foreach($ul->find('li') as $li)
34 | echo $li->innertext . '
';
35 | }
36 |
37 | // -----------------------------------------------------------------------------
38 | // parsing checkbox
39 | $str = <<
41 |
item1
42 |
item2
43 |
item3
44 |
45 | HTML;
46 |
47 | $html = str_get_html($str);
48 | foreach($html->find('input[type=checkbox]') as $checkbox) {
49 | if ($checkbox->checked)
50 | echo $checkbox->name . ' is checked
';
51 | else
52 | echo $checkbox->name . ' is not checked
';
53 | }
54 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/example/.svn/text-base/example_advanced_selector.php.svn-base:
--------------------------------------------------------------------------------
1 |
9 |
12 |
13 | HTML;
14 |
15 | $html = str_get_html($str);
16 | echo $html->find('div div div', 0)->innertext . '
'; // result: "ok"
17 |
18 | // -----------------------------------------------------------------------------
19 | // nested selector
20 | $str = <<
22 | item:1
23 | item:2
24 |
25 |
26 | - item:3
27 | - item:4
28 |
29 | HTML;
30 |
31 | $html = str_get_html($str);
32 | foreach($html->find('ul') as $ul) {
33 | foreach($ul->find('li') as $li)
34 | echo $li->innertext . '
';
35 | }
36 |
37 | // -----------------------------------------------------------------------------
38 | // parsing checkbox
39 | $str = <<
41 | item1
42 | item2
43 | item3
44 |
45 | HTML;
46 |
47 | $html = str_get_html($str);
48 | foreach($html->find('input[type=checkbox]') as $checkbox) {
49 | if ($checkbox->checked)
50 | echo $checkbox->name . ' is checked
';
51 | else
52 | echo $checkbox->name . ' is not checked
';
53 | }
54 | ?>
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/PersistentData/PersistentDataInterface.php:
--------------------------------------------------------------------------------
1 | signedRequest ? $this->signedRequest->get('app_data') : null;
41 | }
42 |
43 | /**
44 | * Get raw signed request from POST.
45 | *
46 | * @return string|null
47 | */
48 | public function getRawSignedRequest()
49 | {
50 | return $this->getRawSignedRequestFromPost() ?: null;
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/application/views/course-taken.php:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 | Welcome session->userdata('displayname');?>
11 |
12 |
13 |
14 | load->view('sidebar');?>
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
![Card image cap]()
25 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/Http/RequestBodyUrlEncoded.php:
--------------------------------------------------------------------------------
1 | params = $params;
46 | }
47 |
48 | /**
49 | * @inheritdoc
50 | */
51 | public function getBody()
52 | {
53 | return http_build_query($this->params, null, '&');
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/application/libraries/vendor/facebook/graph-sdk/src/Facebook/PersistentData/FacebookMemoryPersistentDataHandler.php:
--------------------------------------------------------------------------------
1 | sessionData[$key]) ? $this->sessionData[$key] : null;
44 | }
45 |
46 | /**
47 | * @inheritdoc
48 | */
49 | public function set($key, $value)
50 | {
51 | $this->sessionData[$key] = $value;
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/application/views/sidebar.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/language/english/number_lang.php:
--------------------------------------------------------------------------------
1 | $path) {
28 | $loader->set($namespace, $path);
29 | }
30 |
31 | $map = require __DIR__ . '/autoload_psr4.php';
32 | foreach ($map as $namespace => $path) {
33 | $loader->setPsr4($namespace, $path);
34 | }
35 |
36 | $classMap = require __DIR__ . '/autoload_classmap.php';
37 | if ($classMap) {
38 | $loader->addClassMap($classMap);
39 | }
40 |
41 | $loader->register(true);
42 |
43 | $includeFiles = require __DIR__ . '/autoload_files.php';
44 | foreach ($includeFiles as $fileIdentifier => $file) {
45 | composerRequired458c8da8d4c6f1fc31c03e5eae04b8f($fileIdentifier, $file);
46 | }
47 |
48 | return $loader;
49 | }
50 | }
51 |
52 | function composerRequired458c8da8d4c6f1fc31c03e5eae04b8f($fileIdentifier, $file)
53 | {
54 | if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55 | require $file;
56 |
57 | $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/application/views/admin/setting.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Setting
5 |
6 |
7 |
8 |
9 |
10 |
Payment API
11 |
Here you can edit your site payment setting
12 |
Payment Config
13 |
14 |
15 |
16 |
17 |
18 |
19 |
Site Maintainance
20 |
Power off site when on maintainance and message
21 |
Maintainance Config
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
Frontend Setting
32 |
All sites frontend settings
33 |
Site Config
34 |
35 |
36 |
37 |
38 |
39 |
40 |
Quiz Setting
41 |
Setting for all quiz options
42 |
Quiz Config
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
Social API Configuration
53 |
All Social API settings
54 |
Social Config
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/system/language/english/pagination_lang.php:
--------------------------------------------------------------------------------
1 |
14 |
15 |
16 | HTML;
17 |
18 | $dom->load($str);
19 | $es = $dom->find('img');
20 | assert(count($es)==3);
21 | assert($es[0]->src=='src0');
22 | assert($es[1]->src=='src1');
23 | assert($es[2]->src=='src2');
24 | assert($es[0]->innertext=='');
25 | assert($es[1]->innertext=='');
26 | assert($es[2]->innertext=='');
27 | assert($es[0]->outertext=='
');
28 | assert($es[1]->outertext=='
');
29 | assert($es[2]->outertext=='
');
30 | assert($dom->find('img', 0)->src=='src0');
31 | assert($dom->find('img', 1)->src=='src1');
32 | assert($dom->find('img', 2)->src=='src2');
33 | assert($dom->find('img', 3)===null);
34 | assert($dom->find('img', 99)===null);
35 | assert($dom->save()==$str);
36 |
37 | // -----------------------------------------------------------------------------
38 | // test error tag
39 | $str = <<p1
41 | 
42 |
43 | HTML;
44 |
45 | $dom = str_get_html($str);
46 | $es = $dom->find('img');
47 | assert(count($es)==3);
48 | assert($es[0]->src=='src0');
49 | assert($es[1]->src=='src1');
50 | assert($es[2]->src=='src2');
51 |
52 | $es = $dom->find('p');
53 | assert($es[0]->innertext=='p1');
54 | assert($dom==$str);
55 |
56 | // -----------------------------------------------------------------------------
57 | // tear down
58 | $dom->clear();
59 | unset($dom);
60 | ?>
--------------------------------------------------------------------------------
/application/libraries/simplehtmldom/testcase/.svn/text-base/callback_testcase.php.svn-base:
--------------------------------------------------------------------------------
1 |
foo
13 | HTML;
14 |
15 | function callback_1($e) {
16 | if ($e->tag==='img')
17 | $e->outertext = '';
18 | }
19 |
20 | $dom->load($str);
21 | $dom->set_callback('callback_1');
22 | assert($dom=='foo
');
23 |
24 | // -----------------------------------------------
25 | // innertext test
26 | function callback_2($e) {
27 | if ($e->tag==='p')
28 | $e->innertext = 'bar';
29 | }
30 |
31 | $dom->load($str);
32 | $dom->set_callback('callback_2');
33 | assert($dom=='
bar
');
34 |
35 | // -----------------------------------------------
36 | // attributes test
37 | function callback_3($e) {
38 | if ($e->tag==='img')
39 | $e->src = 'foo';
40 | }
41 |
42 | $dom->load($str);
43 | $dom->set_callback('callback_3');
44 | assert($dom=='
foo
');
45 |
46 | function callback_4($e) {
47 | if ($e->tag==='img')
48 | $e->id = 'foo';
49 | }
50 |
51 | $dom->set_callback('callback_4');
52 | assert($dom=='
foo
');
53 |
54 | // -----------------------------------------------
55 | // attributes test2
56 | //$dom = str_get_dom($str);
57 | $dom->load($str);
58 | $dom->remove_callback();
59 | $dom->find('img', 0)->id = "foo";
60 | assert($dom=='
foo
');
61 |
62 | function callback_5($e) {
63 | if ($e->src==='src0')
64 | unset($e->id);
65 | }
66 |
67 | $dom->set_callback('callback_5');
68 | assert($dom==$str);
69 |
70 | // -----------------------------------------------------------------------------
71 | // tear down
72 | $dom->clear();
73 | unset($dom);
74 | ?>
--------------------------------------------------------------------------------