├── .gitignore ├── project ├── admin │ ├── images │ │ ├── .gitignore │ │ ├── admin.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── avatar │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ ├── placeholder.png │ │ ├── twitter_corner_black.png │ │ └── twitter_corner_blue.png │ ├── assets │ │ └── js │ │ │ └── index.html │ ├── vendors │ │ ├── bootstrap │ │ │ ├── CNAME │ │ │ ├── .stylelintignore │ │ │ ├── scss │ │ │ │ ├── utilities │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ └── _shadows.scss │ │ │ │ ├── _media.scss │ │ │ │ └── mixins │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ └── _text-emphasis.scss │ │ │ ├── .eslintignore │ │ │ ├── site │ │ │ │ ├── docs │ │ │ │ │ └── 4.1 │ │ │ │ │ │ ├── extend │ │ │ │ │ │ └── index.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ │ ├── navbars │ │ │ │ │ │ │ └── navbar.css │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ └── form-validation.css │ │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ │ ├── screenshots │ │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ │ ├── album.png │ │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ │ ├── navbars.png │ │ │ │ │ │ │ ├── pricing.png │ │ │ │ │ │ │ ├── product.png │ │ │ │ │ │ │ ├── sign-in.png │ │ │ │ │ │ │ ├── carousel.png │ │ │ │ │ │ │ ├── checkout.png │ │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ │ │ ├── sticky-footer.png │ │ │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ │ │ ├── starter-template.png │ │ │ │ │ │ │ └── sticky-footer-navbar.png │ │ │ │ │ │ ├── starter-template │ │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ │ └── pricing │ │ │ │ │ │ │ └── pricing.css │ │ │ │ │ │ └── assets │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── bootstrap-stack.png │ │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ │ └── favicons │ │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ │ └── android-chrome-512x512.png │ │ │ │ │ │ ├── brand │ │ │ │ │ │ ├── bootstrap-social.png │ │ │ │ │ │ └── bootstrap-social-logo.png │ │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _anchor.scss │ │ │ │ │ │ ├── _browser-bugs.scss │ │ │ │ │ │ └── _skiplink.scss │ │ │ │ ├── favicon.ico │ │ │ │ ├── _includes │ │ │ │ │ ├── ads.html │ │ │ │ │ └── skippy.html │ │ │ │ ├── sw.js │ │ │ │ ├── robots.txt │ │ │ │ └── _layouts │ │ │ │ │ └── home.html │ │ │ ├── build │ │ │ │ ├── gcp-key.json.enc │ │ │ │ ├── workbox.config.json │ │ │ │ └── postcss.config.js │ │ │ ├── Gemfile │ │ │ ├── .browserslistrc │ │ │ ├── sache.json │ │ │ └── .editorconfig │ │ ├── gaugejs │ │ │ ├── .gitignore │ │ │ ├── assets │ │ │ │ ├── bg.png │ │ │ │ ├── hs.png │ │ │ │ ├── hv.png │ │ │ │ ├── arrow.gif │ │ │ │ ├── cross.gif │ │ │ │ ├── github.gif │ │ │ │ ├── preview.jpg │ │ │ │ ├── ribbon.png │ │ │ │ ├── strike.png │ │ │ │ ├── browsers.png │ │ │ │ └── crosshair.gif │ │ │ └── favicon.ico │ │ ├── popper.js │ │ │ ├── docs │ │ │ │ ├── CNAME │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── pic01.jpg │ │ │ │ │ ├── pic02.jpg │ │ │ │ │ ├── pic03.jpg │ │ │ │ │ ├── pic04.jpg │ │ │ │ │ ├── pic05.jpg │ │ │ │ │ ├── banner.jpg │ │ │ │ │ └── banner.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── documentation.html │ │ │ │ └── _layouts │ │ │ │ │ └── page-nowrap.html │ │ │ ├── popperjs.png │ │ │ ├── packages │ │ │ │ ├── popper │ │ │ │ │ └── src │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── isBrowser.js │ │ │ │ │ │ ├── isNumeric.js │ │ │ │ │ │ └── getWindow.js │ │ │ │ ├── test-utils │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getRect.js │ │ │ │ │ │ ├── prepend.js │ │ │ │ │ │ ├── makeElement.js │ │ │ │ │ │ └── then.js │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ ├── CHANGELOG.md │ │ │ └── lerna.json │ │ ├── chart.js │ │ │ ├── .eslintignore │ │ │ ├── docs │ │ │ │ ├── notes │ │ │ │ │ ├── README.md │ │ │ │ │ └── license.md │ │ │ │ ├── axes │ │ │ │ │ └── radial │ │ │ │ │ │ └── README.md │ │ │ │ └── style.css │ │ │ ├── .eslintrc.yml │ │ │ ├── samples │ │ │ │ ├── favicon.ico │ │ │ │ └── .eslintrc.yml │ │ │ ├── test │ │ │ │ ├── fixtures │ │ │ │ │ ├── plugin.filler │ │ │ │ │ │ ├── fill-line-dataset.png │ │ │ │ │ │ ├── fill-line-boundary-end.png │ │ │ │ │ │ ├── fill-line-dataset-span.png │ │ │ │ │ │ ├── fill-line-boundary-origin.png │ │ │ │ │ │ ├── fill-line-boundary-start.png │ │ │ │ │ │ ├── fill-line-dataset-spline.png │ │ │ │ │ │ ├── fill-line-boundary-end-span.png │ │ │ │ │ │ ├── fill-radar-boundary-origin.png │ │ │ │ │ │ ├── fill-line-boundary-origin-span.png │ │ │ │ │ │ ├── fill-line-boundary-start-span.png │ │ │ │ │ │ ├── fill-line-dataset-spline-span.png │ │ │ │ │ │ ├── fill-line-boundary-origin-spline.png │ │ │ │ │ │ ├── fill-line-boundary-origin-stepped.png │ │ │ │ │ │ ├── fill-radar-boundary-origin-spline.png │ │ │ │ │ │ ├── fill-line-boundary-origin-spline-span.png │ │ │ │ │ │ └── fill-line-boundary-origin-stepped-span.png │ │ │ │ │ ├── controller.bar │ │ │ │ │ │ ├── bar-thickness-flex.png │ │ │ │ │ │ ├── bar-thickness-max.png │ │ │ │ │ │ ├── bar-thickness-offset.png │ │ │ │ │ │ ├── bar-thickness-single.png │ │ │ │ │ │ ├── bar-thickness-stacked.png │ │ │ │ │ │ ├── bar-thickness-absolute.png │ │ │ │ │ │ ├── bar-thickness-multiple.png │ │ │ │ │ │ ├── bar-thickness-no-overlap.png │ │ │ │ │ │ ├── bar-thickness-single-xy.png │ │ │ │ │ │ ├── bar-thickness-flex-offset.png │ │ │ │ │ │ └── bar-thickness-min-interval.png │ │ │ │ │ └── core.scale │ │ │ │ │ │ └── label-offset-vertical-axes.png │ │ │ │ └── .eslintrc.yml │ │ │ └── src │ │ │ │ ├── charts │ │ │ │ ├── Chart.Scatter.js │ │ │ │ ├── Chart.Bar.js │ │ │ │ ├── Chart.Bubble.js │ │ │ │ ├── Chart.Line.js │ │ │ │ ├── Chart.Radar.js │ │ │ │ ├── Chart.Doughnut.js │ │ │ │ └── Chart.PolarArea.js │ │ │ │ ├── plugins │ │ │ │ └── index.js │ │ │ │ ├── helpers │ │ │ │ └── index.js │ │ │ │ ├── elements │ │ │ │ └── index.js │ │ │ │ └── core │ │ │ │ └── core.defaults.js │ │ ├── gmaps │ │ │ ├── .gitignore │ │ │ ├── bower.json │ │ │ └── jsdoc.json │ │ ├── jquery │ │ │ ├── src │ │ │ │ ├── outro.js │ │ │ │ ├── var │ │ │ │ │ ├── arr.js │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ ├── document.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── class2type.js │ │ │ │ │ ├── pnum.js │ │ │ │ │ ├── toString.js │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ ├── documentElement.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── rcssNum.js │ │ │ │ ├── selector.js │ │ │ │ ├── ajax │ │ │ │ │ ├── var │ │ │ │ │ │ ├── rquery.js │ │ │ │ │ │ ├── location.js │ │ │ │ │ │ └── nonce.js │ │ │ │ │ └── parseJSON.js │ │ │ │ ├── css │ │ │ │ │ └── var │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── manipulation │ │ │ │ │ └── var │ │ │ │ │ │ ├── rtagName.js │ │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ │ └── rscriptType.js │ │ │ │ ├── data │ │ │ │ │ └── var │ │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ │ └── dataUser.js │ │ │ │ ├── core │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── traversing │ │ │ │ │ └── var │ │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ │ └── siblings.js │ │ │ │ ├── event │ │ │ │ │ └── support.js │ │ │ │ ├── attributes.js │ │ │ │ └── effects │ │ │ │ │ └── animatedSelector.js │ │ │ └── bower.json │ │ ├── jquery-validation-unobtrusive │ │ │ ├── version.props │ │ │ ├── run.ps1 │ │ │ ├── test │ │ │ │ └── webpacktest │ │ │ │ │ └── src │ │ │ │ │ └── index.js │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── build.cmd │ │ │ └── .appveyor.yml │ │ ├── flot │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── examples │ │ │ │ ├── ajax │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ └── data-eu-gdp-growth-5.json │ │ │ │ ├── background.png │ │ │ │ ├── navigate │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ └── arrow-right.gif │ │ │ │ ├── axes-time-zones │ │ │ │ │ └── tz │ │ │ │ │ │ └── southamerica │ │ │ │ └── image │ │ │ │ │ └── hs-2004-27-a-large-web.jpg │ │ │ ├── component.json │ │ │ ├── package.json │ │ │ └── Makefile │ │ ├── jqvmap │ │ │ ├── grunt │ │ │ │ ├── qunit.js │ │ │ │ ├── clean.js │ │ │ │ ├── index.js │ │ │ │ └── shell.js │ │ │ ├── src │ │ │ │ ├── JQVMap │ │ │ │ │ ├── getPinId.js │ │ │ │ │ ├── isSelected.js │ │ │ │ │ ├── removePins.js │ │ │ │ │ ├── getCountryId.js │ │ │ │ │ ├── setScale.js │ │ │ │ │ ├── getPin.js │ │ │ │ │ ├── removePin.js │ │ │ │ │ ├── setBackgroundColor.js │ │ │ │ │ ├── setScaleColors.js │ │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ │ ├── selectIndex.js │ │ │ │ │ ├── unhighlight.js │ │ │ │ │ ├── bindZoomButtons.js │ │ │ │ │ └── reset.js │ │ │ │ └── ColorScale │ │ │ │ │ ├── rgbToArray.js │ │ │ │ │ ├── setColors.js │ │ │ │ │ ├── vectorMult.js │ │ │ │ │ ├── vectorAdd.js │ │ │ │ │ ├── vectorLength.js │ │ │ │ │ ├── vectorSubtract.js │ │ │ │ │ ├── setMax.js │ │ │ │ │ ├── vectorToNum.js │ │ │ │ │ ├── arrayToRgb.js │ │ │ │ │ └── setMin.js │ │ │ └── examples │ │ │ │ └── images │ │ │ │ ├── flag.png │ │ │ │ ├── tip.png │ │ │ │ ├── globe.png │ │ │ │ ├── thumb.jpg │ │ │ │ ├── background.png │ │ │ │ └── marker │ │ │ │ ├── blue.png │ │ │ │ ├── grey.png │ │ │ │ ├── red.png │ │ │ │ ├── black.png │ │ │ │ ├── green.png │ │ │ │ ├── orange.png │ │ │ │ ├── purple.png │ │ │ │ ├── white.png │ │ │ │ └── yellow.png │ │ ├── peity │ │ │ ├── Gemfile │ │ │ ├── .gitignore │ │ │ ├── test │ │ │ │ ├── fixtures │ │ │ │ │ ├── bar1.png │ │ │ │ │ ├── bar2.png │ │ │ │ │ ├── bar3.png │ │ │ │ │ ├── bar4.png │ │ │ │ │ ├── bar5.png │ │ │ │ │ ├── bar6.png │ │ │ │ │ ├── bar7.png │ │ │ │ │ ├── bar8.png │ │ │ │ │ ├── bar9.png │ │ │ │ │ ├── pie1.png │ │ │ │ │ ├── pie2.png │ │ │ │ │ ├── pie3.png │ │ │ │ │ ├── pie4.png │ │ │ │ │ ├── pie5.png │ │ │ │ │ ├── pie6.png │ │ │ │ │ ├── pie7.png │ │ │ │ │ ├── pie8.png │ │ │ │ │ ├── pie9.png │ │ │ │ │ ├── bar10.png │ │ │ │ │ ├── bar11.png │ │ │ │ │ ├── bar12.png │ │ │ │ │ ├── bar13.png │ │ │ │ │ ├── bar14.png │ │ │ │ │ ├── donut1.png │ │ │ │ │ ├── donut10.png │ │ │ │ │ ├── donut11.png │ │ │ │ │ ├── donut12.png │ │ │ │ │ ├── donut13.png │ │ │ │ │ ├── donut2.png │ │ │ │ │ ├── donut3.png │ │ │ │ │ ├── donut4.png │ │ │ │ │ ├── donut5.png │ │ │ │ │ ├── donut6.png │ │ │ │ │ ├── donut7.png │ │ │ │ │ ├── donut8.png │ │ │ │ │ ├── donut9.png │ │ │ │ │ ├── line1.png │ │ │ │ │ ├── line10.png │ │ │ │ │ ├── line11.png │ │ │ │ │ ├── line12.png │ │ │ │ │ ├── line2.png │ │ │ │ │ ├── line3.png │ │ │ │ │ ├── line4.png │ │ │ │ │ ├── line5.png │ │ │ │ │ ├── line6.png │ │ │ │ │ ├── line7.png │ │ │ │ │ ├── line8.png │ │ │ │ │ ├── line9.png │ │ │ │ │ ├── pie10.png │ │ │ │ │ ├── pie11.png │ │ │ │ │ └── pie12.png │ │ │ │ ├── views │ │ │ │ │ └── chart.ejs │ │ │ │ └── style.css │ │ │ ├── bower.json │ │ │ ├── .travis.yml │ │ │ └── Gemfile.lock │ │ ├── jszip │ │ │ ├── documentation │ │ │ │ ├── examples │ │ │ │ │ ├── get-binary-files-ajax.inc │ │ │ │ │ │ ├── fetch_api.html │ │ │ │ │ │ └── jszip_utils.html │ │ │ │ │ └── download-zip-file.inc │ │ │ │ │ │ ├── data_uri.html │ │ │ │ │ │ └── blob.html │ │ │ │ └── api_jszip │ │ │ │ │ ├── version.md │ │ │ │ │ └── constructor.md │ │ │ └── lib │ │ │ │ ├── signature.js │ │ │ │ └── defaults.js │ │ ├── selectFX │ │ │ ├── img │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── france.svg │ │ │ └── fonts │ │ │ │ ├── icomoon │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.ttf │ │ │ │ └── icomoon.woff │ │ │ │ └── codropsicons │ │ │ │ ├── codropsicons.eot │ │ │ │ ├── codropsicons.ttf │ │ │ │ ├── codropsicons.woff │ │ │ │ └── license.txt │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ └── chosen-sprite@2x.png │ │ ├── flag-icon-css │ │ │ ├── less │ │ │ │ ├── variables.less │ │ │ │ ├── flag-icon.less │ │ │ │ └── flag-icon-more.less │ │ │ ├── sass │ │ │ │ ├── flag-icon.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── _flag-icon-more.scss │ │ │ ├── flags │ │ │ │ ├── 4x3 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ └── tt.svg │ │ │ │ └── 1x1 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ └── ro.svg │ │ │ └── bower.json │ │ ├── themify-icons │ │ │ └── fonts │ │ │ │ ├── themify.eot │ │ │ │ ├── themify.ttf │ │ │ │ └── themify.woff │ │ ├── font-awesome │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── screen-reader.less │ │ │ │ └── fixed-width.less │ │ │ └── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ └── _screen-reader.scss │ │ ├── animate.css │ │ │ ├── bower.json │ │ │ └── source │ │ │ │ ├── fading_entrances │ │ │ │ ├── fadeIn.css │ │ │ │ ├── fadeInUp.css │ │ │ │ ├── fadeInDown.css │ │ │ │ ├── fadeInLeft.css │ │ │ │ ├── fadeInRight.css │ │ │ │ ├── fadeInUpBig.css │ │ │ │ ├── fadeInDownBig.css │ │ │ │ ├── fadeInLeftBig.css │ │ │ │ └── fadeInRightBig.css │ │ │ │ ├── fading_exits │ │ │ │ ├── fadeOut.css │ │ │ │ ├── fadeOutUp.css │ │ │ │ ├── fadeOutDown.css │ │ │ │ ├── fadeOutLeft.css │ │ │ │ ├── fadeOutRight.css │ │ │ │ ├── fadeOutUpBig.css │ │ │ │ ├── fadeOutDownBig.css │ │ │ │ ├── fadeOutLeftBig.css │ │ │ │ └── fadeOutRightBig.css │ │ │ │ ├── attention_seekers │ │ │ │ └── flash.css │ │ │ │ ├── zooming_entrances │ │ │ │ └── zoomIn.css │ │ │ │ ├── sliding_entrances │ │ │ │ ├── slideInUp.css │ │ │ │ ├── slideInDown.css │ │ │ │ ├── slideInLeft.css │ │ │ │ └── slideInRight.css │ │ │ │ ├── sliding_exits │ │ │ │ ├── slideOutUp.css │ │ │ │ ├── slideOutDown.css │ │ │ │ ├── slideOutLeft.css │ │ │ │ └── slideOutRight.css │ │ │ │ ├── zooming_exits │ │ │ │ └── zoomOut.css │ │ │ │ ├── bouncing_exits │ │ │ │ ├── bounceOutLeft.css │ │ │ │ └── bounceOutRight.css │ │ │ │ ├── lightspeed │ │ │ │ └── lightSpeedOut.css │ │ │ │ └── rotating_exits │ │ │ │ └── rotateOut.css │ │ ├── datatables.net-buttons │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ └── jquery-validation │ │ │ └── src │ │ │ ├── additional │ │ │ ├── lettersonly.js │ │ │ ├── nowhitespace.js │ │ │ ├── integer.js │ │ │ ├── zipcodeUS.js │ │ │ ├── alphanumeric.js │ │ │ ├── postalcodeNL.js │ │ │ ├── letterswithbasicpunc.js │ │ │ ├── time.js │ │ │ ├── ziprange.js │ │ │ ├── dateNL.js │ │ │ ├── postalcodeIT.js │ │ │ ├── time12h.js │ │ │ ├── mobileNL.js │ │ │ ├── notEqualTo.js │ │ │ ├── dateFA.js │ │ │ ├── giroaccountNL.js │ │ │ ├── ipv4.js │ │ │ └── strippedminlength.js │ │ │ └── localization │ │ │ └── methods_pt.js │ ├── .bowerrc │ ├── .gitattributes │ ├── .gitignore │ ├── favicon.ico │ └── .editorconfig ├── assets │ └── images │ │ ├── hero.jpg │ │ ├── slider │ │ ├── slide1.jpg │ │ ├── slide2.jpg │ │ └── slide3.png │ │ ├── payment_method.webp │ │ ├── profilePictures │ │ ├── pp.jpg │ │ └── 6814fd7552bea0705290502252950.jpg │ │ └── products │ │ ├── 68262bcc622536.14252310.jpg │ │ ├── 68262c23ea0ec9.87889575.jpg │ │ ├── 68262ca7b005e4.76964500.jpg │ │ ├── 682b5e465291b2.96946048.jpg │ │ ├── 682b5e741783f8.94329853.jpg │ │ ├── 682b5f3f6fbdd6.12714588.jpg │ │ ├── 682b5f7d3204d9.88232917.jpg │ │ ├── 682b604364b262.04980956.jpg │ │ ├── 682b609f6fcf66.34982834.jpg │ │ ├── 682b60b5331087.39106936.png │ │ ├── 682b60cd828b23.20468066.jpg │ │ ├── 682b5ef5390241.26500432.jpeg │ │ └── 682b600b8d7b68.33444298.webp └── logout.php ├── check-php-virsion.php ├── slider ├── slide1.jpg ├── slide2.jpg └── slide3.jpg ├── d1-l1-echo.php ├── d19 crud ├── footer.php └── header.php ├── uploads ├── 01bAaB67a0fd3448347.jpg ├── AB1ba067a0fd41accc9.jpg ├── ab01BA67a0fcf13c6f9.jpg ├── abAB0167a0fd3bed6c5.jpg ├── 1BaAb067a0fd7c25bcc6.56077642.png └── bB0aA167a0fd839b1724.56786852.jpg ├── hw └── crud │ └── imran │ ├── php-Class__22 │ └── .DS_Store │ └── CRUD_2 │ └── footer.php ├── d15-l3-Filters.php ├── d2-l2-variables.php ├── d2-l1-print-var_dump.php ├── d20 & d21 crud2 └── footer.php ├── d12-l1-get.php ├── d3-l1-constants.php ├── d12-l3-session.php ├── d11-l3-globals.php ├── d11-l1-functions.php ├── d15-l1-try-catch-through-finally.php └── d12-l2-env.php /.gitignore: -------------------------------------------------------------------------------- 1 | hw/form/shanta 2 | -------------------------------------------------------------------------------- /project/admin/images/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin/assets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /project/admin/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendors" 3 | } -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | node_modules -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/CNAME: -------------------------------------------------------------------------------- 1 | popper.js.org 2 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /project/admin/vendors/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .DS_Store -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/docs/notes/README.md: -------------------------------------------------------------------------------- 1 | # Additional Notes -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/version.props: -------------------------------------------------------------------------------- 1 | 3.2.11 2 | -------------------------------------------------------------------------------- /check-php-virsion.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /slider/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/slider/slide1.jpg -------------------------------------------------------------------------------- /slider/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/slider/slide2.jpg -------------------------------------------------------------------------------- /slider/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/slider/slide3.jpg -------------------------------------------------------------------------------- /d1-l1-echo.php: -------------------------------------------------------------------------------- 1 | "; 3 | echo "This is a demo text
"; 4 | -------------------------------------------------------------------------------- /project/admin/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/run.ps1: -------------------------------------------------------------------------------- 1 | dotnet msbuild .\build.msbuild 2 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /d19 crud/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/.gitignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | npm-debug.log 3 | node_modules 4 | .sass-cache 5 | Docker/ 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/grunt/qunit.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: ['tests/*.html'] 3 | }; 4 | -------------------------------------------------------------------------------- /project/admin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/favicon.ico -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- 1 | **/*.min.css 2 | **/dist/ 3 | **/vendor/ 4 | /_gh_pages/ 5 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/grunt/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: [ 3 | "dist/*.js" 4 | ] 5 | }; 6 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'hpricot' 4 | gem 'kramdown' 5 | -------------------------------------------------------------------------------- /project/admin/images/admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/admin.jpg -------------------------------------------------------------------------------- /project/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/logo.png -------------------------------------------------------------------------------- /project/admin/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/logo2.png -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /project/assets/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/hero.jpg -------------------------------------------------------------------------------- /project/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin/images/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/1.jpg -------------------------------------------------------------------------------- /project/admin/images/avatar/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/2.jpg -------------------------------------------------------------------------------- /project/admin/images/avatar/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/3.jpg -------------------------------------------------------------------------------- /project/admin/images/avatar/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/4.jpg -------------------------------------------------------------------------------- /project/admin/images/avatar/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/5.jpg -------------------------------------------------------------------------------- /project/admin/images/avatar/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/avatar/6.jpg -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.min.js 2 | **/dist/ 3 | **/vendor/ 4 | /_gh_pages/ 5 | /package.js 6 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/.gitignore: -------------------------------------------------------------------------------- 1 | jquery.peity.min.js.gz 2 | /node_modules 3 | /test/comparisons 4 | /test/images 5 | -------------------------------------------------------------------------------- /uploads/01bAaB67a0fd3448347.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/01bAaB67a0fd3448347.jpg -------------------------------------------------------------------------------- /uploads/AB1ba067a0fd41accc9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/AB1ba067a0fd41accc9.jpg -------------------------------------------------------------------------------- /uploads/ab01BA67a0fcf13c6f9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/ab01BA67a0fcf13c6f9.jpg -------------------------------------------------------------------------------- /uploads/abAB0167a0fd3bed6c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/abAB0167a0fd3bed6c5.jpg -------------------------------------------------------------------------------- /project/admin/vendors/gmaps/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gmaps", 3 | "version": "0.4.25", 4 | "main": "gmaps.js" 5 | } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/test/webpacktest/src/index.js: -------------------------------------------------------------------------------- 1 | import _ from "jquery-validation-unobtrusive" -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /hw/crud/imran/php-Class__22/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/hw/crud/imran/php-Class__22/.DS_Store -------------------------------------------------------------------------------- /project/admin/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/placeholder.png -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/1.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/2.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/3.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/4.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/5.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/6.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/7.png -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/img/8.png -------------------------------------------------------------------------------- /project/assets/images/slider/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/slider/slide1.jpg -------------------------------------------------------------------------------- /project/assets/images/slider/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/slider/slide2.jpg -------------------------------------------------------------------------------- /project/assets/images/slider/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/slider/slide3.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: chartjs 2 | 3 | env: 4 | browser: true 5 | node: true 6 | 7 | plugins: ['html'] 8 | -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/bg.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/hs.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/hv.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/favicon.ico -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/grunt/index.js: -------------------------------------------------------------------------------- 1 | var requireDirectory = require("require-directory"); 2 | module.exports = requireDirectory(module); -------------------------------------------------------------------------------- /project/assets/images/payment_method.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/payment_method.webp -------------------------------------------------------------------------------- /uploads/1BaAb067a0fd7c25bcc6.56077642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/1BaAb067a0fd7c25bcc6.56077642.png -------------------------------------------------------------------------------- /uploads/bB0aA167a0fd839b1724.56786852.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/uploads/bB0aA167a0fd839b1724.56786852.jpg -------------------------------------------------------------------------------- /project/admin/images/twitter_corner_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/twitter_corner_black.png -------------------------------------------------------------------------------- /project/admin/images/twitter_corner_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/images/twitter_corner_blue.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/popperjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/popperjs.png -------------------------------------------------------------------------------- /project/assets/images/profilePictures/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/profilePictures/pp.jpg -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/favicon.ico -------------------------------------------------------------------------------- /project/admin/vendors/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/arrow.gif -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/cross.gif -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/github.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/github.gif -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/preview.jpg -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/ribbon.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/strike.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/getPinId.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getPinId = function (cc) { 2 | return this.getCountryId(cc) + '_pin'; 3 | }; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/isSelected.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.isSelected = function(cc) { 2 | return this.selectIndex(cc) >= 0; 3 | }; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/favicon.ico -------------------------------------------------------------------------------- /d15-l3-Filters.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/samples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/samples/favicon.ico -------------------------------------------------------------------------------- /project/admin/vendors/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/background.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/browsers.png -------------------------------------------------------------------------------- /project/admin/vendors/gaugejs/assets/crosshair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/gaugejs/assets/crosshair.gif -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/removePins.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.removePins = function(){ 2 | this.container.find('.jqvmap-pin').remove(); 3 | }; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar1.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar2.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar3.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar4.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar5.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar6.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar7.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar8.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar9.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie1.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie2.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie3.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie4.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie5.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie6.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie7.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie8.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie9.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/popper/src/utils/isBrowser.js: -------------------------------------------------------------------------------- 1 | export default typeof window !== 'undefined' && typeof document !== 'undefined'; 2 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/less/variables.less: -------------------------------------------------------------------------------- 1 | @flag-icon-css-path: '../flags'; 2 | @flag-icon-rect-path: '/4x3'; 3 | @flag-icon-square-path: '/1x1'; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/flag.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/tip.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/getCountryId.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getCountryId = function (cc) { 2 | return 'jqvmap' + this.index + '_' + cc; 3 | }; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar10.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar11.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar12.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar13.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/bar14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/bar14.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut1.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut10.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut11.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut12.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut13.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut2.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut3.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut4.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut5.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut6.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut7.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut8.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/donut9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/donut9.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line1.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line10.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line11.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line12.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line2.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line3.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line4.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line5.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line6.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line7.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line8.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/line9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/line9.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie10.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie11.png -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/fixtures/pie12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/peity/test/fixtures/pie12.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/logo.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/pic01.jpg -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/pic02.jpg -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/pic03.jpg -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/pic04.jpg -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/pic05.jpg -------------------------------------------------------------------------------- /project/admin/vendors/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /project/admin/vendors/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/build/gcp-key.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/build/gcp-key.json.enc -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | box-shadow: $shadow; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/globe.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/thumb.jpg -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/setScale.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setScale = function (scale) { 2 | this.scale = scale; 3 | this.applyTransform(); 4 | }; 5 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/favicon-16x16.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/favicon-32x32.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/favicon-96x96.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/banner.jpg -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/images/banner.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/test-utils/utils/getRect.js: -------------------------------------------------------------------------------- 1 | export default function getRect(element) { 2 | return element.getBoundingClientRect(); 3 | } 4 | -------------------------------------------------------------------------------- /project/admin/vendors/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/navbars/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-bottom: 20px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/less/flag-icon.less: -------------------------------------------------------------------------------- 1 | @import 'variables'; 2 | @import 'flag-icon-base'; 3 | @import 'flag-icon-list'; 4 | @import 'flag-icon-more'; 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/sass/flag-icon.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "flag-icon-base"; 3 | @import "flag-icon-list"; 4 | @import "flag-icon-more"; 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /project/assets/images/products/68262bcc622536.14252310.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/68262bcc622536.14252310.jpg -------------------------------------------------------------------------------- /project/assets/images/products/68262c23ea0ec9.87889575.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/68262c23ea0ec9.87889575.jpg -------------------------------------------------------------------------------- /project/assets/images/products/68262ca7b005e4.76964500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/68262ca7b005e4.76964500.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b5e465291b2.96946048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b5e465291b2.96946048.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b5e741783f8.94329853.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b5e741783f8.94329853.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b5f3f6fbdd6.12714588.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b5f3f6fbdd6.12714588.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b5f7d3204d9.88232917.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b5f7d3204d9.88232917.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b604364b262.04980956.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b604364b262.04980956.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b609f6fcf66.34982834.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b609f6fcf66.34982834.jpg -------------------------------------------------------------------------------- /project/assets/images/products/682b60b5331087.39106936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b60b5331087.39106936.png -------------------------------------------------------------------------------- /project/assets/images/products/682b60cd828b23.20468066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b60cd828b23.20468066.jpg -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | 5 | .lh-condensed { line-height: 1.25; } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/background.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/blue.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/grey.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/red.png -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/test-utils/utils/prepend.js: -------------------------------------------------------------------------------- 1 | export default function prepend(node, parent) { 2 | parent.insertBefore(node, parent.firstChild); 3 | } 4 | -------------------------------------------------------------------------------- /project/assets/images/products/682b5ef5390241.26500432.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b5ef5390241.26500432.jpeg -------------------------------------------------------------------------------- /project/assets/images/products/682b600b8d7b68.33444298.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/products/682b600b8d7b68.33444298.webp -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animate.css", 3 | "main": "./animate.css", 4 | "ignore": [".*", "*.yml", "Gemfile", "Gemfile.lock", "*.md"] 5 | } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/black.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/green.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/orange.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/purple.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/white.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/examples/images/marker/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/jqvmap/examples/images/marker/yellow.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/getPin.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.getPin = function(cc){ 2 | var pinObj = jQuery('#' + this.getPinId(cc)); 3 | return pinObj.html(); 4 | }; 5 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/_includes/ads.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/admin/vendors/datatables.net-buttons/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/datatables.net-buttons/swf/flashExport.swf -------------------------------------------------------------------------------- /project/admin/vendors/flot/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/removePin.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.removePin = function(cc) { 2 | cc = cc.toLowerCase(); 3 | jQuery('#' + this.getPinId(cc)).remove(); 4 | }; 5 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/sw.js: -------------------------------------------------------------------------------- 1 | /* global workbox:false */ 2 | 3 | self.importScripts('docs/4.1/assets/js/vendor/{fileName}') 4 | 5 | workbox.precaching.precacheAndRoute([]) 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | $flag-icon-css-path: '../flags' !default; 2 | $flag-icon-rect-path: '/4x3' !default; 3 | $flag-icon-square-path: '/1x1' !default; 4 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /project/admin/vendors/peity/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "peity", 3 | "version": "3.3.0", 4 | "main": "jquery.peity.js", 5 | "dependencies": { 6 | "jquery": ">=1.6.2" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/popper.js/docs/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.eot -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.ttf -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/selectFX/fonts/codropsicons/codropsicons.woff -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/navbar-fixed/navbar-top-fixed.css: -------------------------------------------------------------------------------- 1 | /* Show it is fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | padding-top: 4.5rem; 5 | } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 3.5rem tall */ 2 | body { 3 | padding-top: 3.5rem; 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/setBackgroundColor.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setBackgroundColor = function (backgroundColor) { 2 | this.container.css('background-color', backgroundColor); 3 | }; 4 | -------------------------------------------------------------------------------- /project/assets/images/profilePictures/6814fd7552bea0705290502252950.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/assets/images/profilePictures/6814fd7552bea0705290502252950.jpg -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/blog.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/grid.png -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/test-utils/utils/makeElement.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Create an element. 3 | */ 4 | export default function makeElement() { 5 | return document.createElement('div'); 6 | } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/bootstrap-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/bootstrap-stack.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/bootstrap-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/bootstrap-themes.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/album.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/cover.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbars.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/pricing.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/product.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sign-in.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/samples/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | globals: 2 | $: true 3 | Chart: true 4 | Samples: true 5 | moment: true 6 | randomScalingFactor: true 7 | 8 | rules: 9 | no-new: 0 10 | -------------------------------------------------------------------------------- /project/admin/vendors/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusin = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/brand/bootstrap-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/brand/bootstrap-social.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/carousel.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/checkout.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/dashboard.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/jumbotron.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/offcanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/offcanvas.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 5rem; 3 | } 4 | .starter-template { 5 | padding: 3rem 1.5rem; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | # www.robotstxt.org/ 5 | 6 | # Allow crawling of all content 7 | User-agent: * 8 | Disallow: 9 | Sitemap: {{ site.url }}/sitemap.xml 10 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | } 8 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-fixed.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-flex.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-max.png -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/less/flag-icon-more.less: -------------------------------------------------------------------------------- 1 | .flag-icon(es-ct); 2 | .flag-icon(eu); 3 | .flag-icon(gb-eng); 4 | .flag-icon(gb-nir); 5 | .flag-icon(gb-sct); 6 | .flag-icon(gb-wls); 7 | .flag-icon(un); 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | node_modules/ 3 | *.nupkg 4 | npmpackoutput/ 5 | test/webpacktest/package*.json 6 | test/webpacktest/dist/ 7 | artifacts/ 8 | dist/ 9 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/brand/bootstrap-social-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/brand/bootstrap-social-logo.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-bottom.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/navbar-static.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-offset.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-single.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/grunt/shell.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | lint: { 3 | command: "node_modules/.bin/eslint src --quiet && echo '\033[0;32m\n✓ All Good\033[0m ٩(ˊᗜˋ*)و'", 4 | stdout: false 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/.travis.yml: -------------------------------------------------------------------------------- 1 | dist: trusty 2 | language: node_js 3 | node_js: 4 | - "node" 5 | cache: 6 | directories: 7 | - node_modules 8 | notifications: 9 | email: false 10 | sudo: false 11 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/documentation.html: -------------------------------------------------------------------------------- 1 | 2 | Moved 3 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/floating-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/floating-labels.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/starter-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/starter-template.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.png -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/examples/download-zip-file.inc/data_uri.html: -------------------------------------------------------------------------------- 1 |

Does not work in IE, has restrictions on the length.

2 | 3 | 4 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog moved! 2 | 3 | You can find the releases history with the relative changes visiting the dedicated GitHub page: 4 | 5 | https://github.com/FezVrasta/popper.js/releases 6 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.png -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/setScaleColors.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setScaleColors = function (colors) { 2 | this.colorScale.setColors(colors); 3 | 4 | if (this.values) { 5 | this.setValues(this.values); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visibility utilities 3 | // 4 | 5 | .visible { 6 | @include invisible(visible); 7 | } 8 | 9 | .invisible { 10 | @include invisible(hidden); 11 | } 12 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/assets/img/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/bootstrap/site/docs/4.1/examples/screenshots/sticky-footer-navbar.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.png -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "lettersonly", function( value, element ) { 2 | return this.optional( element ) || /^[a-z]+$/i.test( value ); 3 | }, "Letters only please" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "nowhitespace", function( value, element ) { 2 | return this.optional( element ) || /^\S+$/i.test( value ); 3 | }, "No white space please" ); 4 | -------------------------------------------------------------------------------- /d2-l2-variables.php: -------------------------------------------------------------------------------- 1 | "; 7 | 8 | echo "$myStudent1 $myStudent2 $myStudent3
"; 9 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/_includes/skippy.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | Skip to main content 4 |
5 |
6 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.png -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/rgbToArray.js: -------------------------------------------------------------------------------- 1 | ColorScale.rgbToArray = function (rgb) { 2 | rgb = rgb.substr(1); 3 | return [parseInt(rgb.substr(0, 2), 16), parseInt(rgb.substr(2, 2), 16), parseInt(rgb.substr(4, 2), 16)]; 4 | }; 5 | -------------------------------------------------------------------------------- /project/admin/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 4 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | from { 3 | opacity: 0; 4 | } 5 | 6 | to { 7 | opacity: 1; 8 | } 9 | } 10 | 11 | .fadeIn { 12 | animation-name: fadeIn; 13 | } 14 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .fadeOut { 12 | animation-name: fadeOut; 13 | } 14 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/build/workbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "globDirectory": "./", 3 | "globPatterns": [ 4 | "_gh_pages/**/*.{html,css,js,json,png,svg}" 5 | ], 6 | "swSrc": "./site/sw.js", 7 | "swDest": "./_gh_pages/sw.js" 8 | } 9 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 'use strict' 3 | 4 | $('[data-toggle="offcanvas"]').on('click', function () { 5 | $('.offcanvas-collapse').toggleClass('open') 6 | }) 7 | }) 8 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.png -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.png -------------------------------------------------------------------------------- /project/admin/vendors/flot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.3", 4 | "main": "jquery.flot.js", 5 | "scripts": { 6 | "test": "make test" 7 | }, 8 | "devDependencies": { 9 | "jshint": "0.9.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ====== 3 | 4 | Information on contributing to this repo is in the [Contributing Guide](https://github.com/aspnet/Home/blob/dev/CONTRIBUTING.md) in the Home repo. 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/setNormalizeFunction.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.setNormalizeFunction = function (f) { 2 | this.colorScale.setNormalizeFunction(f); 3 | 4 | if (this.values) { 5 | this.setValues(this.values); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/test/README.md: -------------------------------------------------------------------------------- 1 | # Popper.js scripts 2 | 3 | This package is a list of scripts used by Popper.js and Tooltip.js to 4 | test the packages. 5 | 6 | It's not intended to be used outside of Popper.js repository. 7 | -------------------------------------------------------------------------------- /d2-l1-print-var_dump.php: -------------------------------------------------------------------------------- 1 | "; 3 | print "This is a demo text 1
"; 4 | if (print "This is a demo text 2
") { 5 | echo "This is a demo text 3
"; 6 | } 7 | var_dump(["Dhaka", "Chittagong", "Sylhet"]); 8 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Scatter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | Chart.Scatter = function(context, config) { 5 | config.type = 'scatter'; 6 | return new Chart(context, config); 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.png -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/integer.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "integer", function( value, element ) { 2 | return this.optional( element ) || /^-?\d+$/.test( value ); 3 | }, "A positive or negative non-decimal number please" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/setColors.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setColors = function (colors) { 2 | for (var i = 0; i < colors.length; i++) { 3 | colors[i] = ColorScale.rgbToArray(colors[i]); 4 | } 5 | this.colors = colors; 6 | }; 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/examples/download-zip-file.inc/blob.html: -------------------------------------------------------------------------------- 1 |

Works on firefox, chrome , opera >= 15 and IE >= 10 (but NOT in compatibility view).

2 | 3 | -------------------------------------------------------------------------------- /d20 & d21 crud2/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/docs/notes/license.md: -------------------------------------------------------------------------------- 1 | # License 2 | 3 | Chart.js is open source and available under the MIT license. -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/cmbd282/main/project/admin/vendors/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.png -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "zipcodeUS", function( value, element ) { 2 | return this.optional( element ) || /^\d{5}(-\d{4})?$/.test( value ); 3 | }, "The specified US ZIP Code is invalid" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/plugins/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | module.exports.filler = require('./plugin.filler'); 5 | module.exports.legend = require('./plugin.legend'); 6 | module.exports.title = require('./plugin.title'); 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "alphanumeric", function( value, element ) { 2 | return this.optional( element ) || /^\w+$/i.test( value ); 3 | }, "Letters, numbers, and underscores only please" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/vectorMult.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorMult = function (vector, num) { 2 | var result = []; 3 | for (var i = 0; i < vector.length; i++) { 4 | result[i] = vector[i] * num; 5 | } 6 | return result; 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/test-utils/utils/then.js: -------------------------------------------------------------------------------- 1 | export default function then(callback, delay = 100) { 2 | setTimeout(callback, jasmine.THEN_DELAY); 3 | jasmine.THEN_DELAY += delay; 4 | } 5 | 6 | beforeEach(() => (jasmine.THEN_DELAY = 0)); 7 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | group :development, :test do 4 | gem 'jekyll', '~> 3.8.3' 5 | gem 'jekyll-redirect-from', '~> 0.14.0' 6 | gem 'jekyll-sitemap', '~> 1.2.0' 7 | gem 'jekyll-toc', '~> 0.6.0' 8 | end 9 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Bar.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Bar = function(context, config) { 6 | config.type = 'bar'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/views/chart.ejs: -------------------------------------------------------------------------------- 1 |
2 | <%= chart.text %> 3 |
4 | 5 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Bubble.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Bubble = function(context, config) { 6 | config.type = 'bubble'; 7 | return new Chart(context, config); 8 | }; 9 | 10 | }; 11 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Line.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Line = function(context, config) { 6 | config.type = 'line'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Radar.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Radar = function(context, config) { 6 | config.type = 'radar'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/sass/_flag-icon-more.scss: -------------------------------------------------------------------------------- 1 | @include flag-icon(es-ct); 2 | @include flag-icon(eu); 3 | @include flag-icon(gb-eng); 4 | @include flag-icon(gb-nir); 5 | @include flag-icon(gb-sct); 6 | @include flag-icon(gb-wls); 7 | @include flag-icon(un); 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "postalcodeNL", function( value, element ) { 2 | return this.optional( element ) || /^[1-9][0-9]{3}\s?[a-zA-Z]{2}$/.test( value ); 3 | }, "Please specify a valid postal code" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/vectorAdd.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorAdd = function (vector1, vector2) { 2 | var vector = []; 3 | for (var i = 0; i < vector1.length; i++) { 4 | vector[i] = vector1[i] + vector2[i]; 5 | } 6 | return vector; 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/vectorLength.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorLength = function (vector) { 2 | var result = 0; 3 | for (var i = 0; i < vector.length; i++) { 4 | result += vector[i] * vector[i]; 5 | } 6 | return Math.sqrt(result); 7 | }; 8 | -------------------------------------------------------------------------------- /d12-l1-get.php: -------------------------------------------------------------------------------- 1 | "; 5 | print_r($_GET); 6 | echo ""; 7 | 8 | echo $_GET['name']; 9 | echo "
"; 10 | // null coalescing operator 11 | echo $_GET['age'] ?? "Not set"; 12 | ?> -------------------------------------------------------------------------------- /d3-l1-constants.php: -------------------------------------------------------------------------------- 1 | "; 6 | 7 | $x = 20; 8 | echo $x; 9 | 10 | echo "
"; 11 | 12 | define("city", "Dhaka"); 13 | // define("city", "Chittagong"); 14 | 15 | echo city; 16 | 17 | define("country", "Bangladesh"); 18 | -------------------------------------------------------------------------------- /hw/crud/imran/CRUD_2/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "letterswithbasicpunc", function( value, element ) { 2 | return this.optional( element ) || /^[a-z\-.,()'"\s]+$/i.test( value ); 3 | }, "Letters or punctuation only please" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | hpricot (0.8.6) 5 | kramdown (1.9.0) 6 | 7 | PLATFORMS 8 | ruby 9 | 10 | DEPENDENCIES 11 | hpricot 12 | kramdown 13 | 14 | BUNDLED WITH 15 | 1.13.7 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | from, 3 | 50%, 4 | to { 5 | opacity: 1; 6 | } 7 | 8 | 25%, 9 | 75% { 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .flash { 15 | animation-name: flash; 16 | } 17 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.Doughnut.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.Doughnut = function(context, config) { 6 | config.type = 'doughnut'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/time.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "time", function( value, element ) { 2 | return this.optional( element ) || /^([01]\d|2[0-3]|[0-9])(:[0-5]\d){1,2}$/.test( value ); 3 | }, "Please enter a valid time, between 00:00 and 23:59" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/ziprange.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "ziprange", function( value, element ) { 2 | return this.optional( element ) || /^90[2-5]\d\{2\}-\d{4}$/.test( value ); 3 | }, "Your ZIP-code must be in the range 902xx-xxxx to 905xx-xxxx" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/vectorSubtract.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorSubtract = function (vector1, vector2) { 2 | var vector = []; 3 | for (var i = 0; i < vector1.length; i++) { 4 | vector[i] = vector1[i] - vector2[i]; 5 | } 6 | return vector; 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "lerna": "2.0.0", 3 | "packages": [ 4 | "packages/*" 5 | ], 6 | "version": "0.0.0", 7 | "npmClient": "yarn", 8 | "commands": { 9 | "run": { 10 | "ignore": "\\@popperjs/*" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/scss/_anchor.scss: -------------------------------------------------------------------------------- 1 | .anchorjs-link { 2 | font-weight: 400; 3 | color: rgba($link-color, .5); 4 | transition: color .16s linear; 5 | 6 | &:hover { 7 | color: $link-color; 8 | text-decoration: none; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/charts/Chart.PolarArea.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(Chart) { 4 | 5 | Chart.PolarArea = function(context, config) { 6 | config.type = 'polarArea'; 7 | 8 | return new Chart(context, config); 9 | }; 10 | 11 | }; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/setMax.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setMax = function (max) { 2 | this.clearMaxValue = max; 3 | if (typeof this.normalize === 'function') { 4 | this.maxValue = this.normalize(max); 5 | } else { 6 | this.maxValue = max; 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/zooming_entrances/zoomIn.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomIn { 2 | from { 3 | opacity: 0; 4 | transform: scale3d(0.3, 0.3, 0.3); 5 | } 6 | 7 | 50% { 8 | opacity: 1; 9 | } 10 | } 11 | 12 | .zoomIn { 13 | animation-name: zoomIn; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/helpers/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./helpers.core'); 4 | module.exports.easing = require('./helpers.easing'); 5 | module.exports.canvas = require('./helpers.canvas'); 6 | module.exports.options = require('./helpers.options'); 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/dateNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "dateNL", function( value, element ) { 2 | return this.optional( element ) || /^(0?[1-9]|[12]\d|3[01])[\.\/\-](0?[1-9]|1[012])[\.\/\-]([12]\d)?(\d\d)$/.test( value ); 3 | }, $.validator.messages.date ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- 1 | /* Matches Italian postcode (CAP) */ 2 | $.validator.addMethod( "postalcodeIT", function( value, element ) { 3 | return this.optional( element ) || /^\d{5}$/.test( value ); 4 | }, "Please specify a valid postal code" ); 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/time12h.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "time12h", function( value, element ) { 2 | return this.optional( element ) || /^((0?[1-9]|1[012])(:[0-5]\d){1,2}(\ ?[AP]M))$/i.test( value ); 3 | }, "Please enter a valid time in 12-hour am/pm format" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/vectorToNum.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.vectorToNum = function (vector) { 2 | var num = 0; 3 | for (var i = 0; i < vector.length; i++) { 4 | num += Math.round(vector[i]) * Math.pow(256, vector.length - i - 1); 5 | } 6 | return num; 7 | }; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/arrayToRgb.js: -------------------------------------------------------------------------------- 1 | ColorScale.arrayToRgb = function (ar) { 2 | var rgb = '#'; 3 | var d; 4 | for (var i = 0; i < ar.length; i++) { 5 | d = ar[i].toString(16); 6 | rgb += d.length === 1 ? '0' + d : d; 7 | } 8 | return rgb; 9 | }; 10 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/api_jszip/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "JSZip.version" 3 | layout: default 4 | section: api 5 | --- 6 | 7 | The version of JSZip as a string. 8 | 9 | __Since__: v3.1.0 10 | 11 | ## Example 12 | 13 | ```js 14 | JSZip.version == "3.1.0"; 15 | ``` 16 | -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/img/france.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUp { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutUp { 13 | animation-name: fadeOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- 1 | # https://github.com/browserslist/browserslist#readme 2 | 3 | >= 1% 4 | last 1 major version 5 | not dead 6 | Chrome >= 45 7 | Firefox >= 38 8 | Edge >= 12 9 | Explorer >= 10 10 | iOS >= 9 11 | Safari >= 9 12 | Android >= 4.4 13 | Opera >= 30 14 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left { 4 | float: left !important; 5 | } 6 | @mixin float-right { 7 | float: right !important; 8 | } 9 | @mixin float-none { 10 | float: none !important; 11 | } 12 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/ColorScale/setMin.js: -------------------------------------------------------------------------------- 1 | ColorScale.prototype.setMin = function (min) { 2 | this.clearMinValue = min; 3 | 4 | if (typeof this.normalize === 'function') { 5 | this.minValue = this.normalize(min); 6 | } else { 7 | this.minValue = min; 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDown { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutDown { 13 | animation-name: fadeOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/sache.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.", 4 | "tags": ["bootstrap", "grid", "typography", "buttons", "ui", "responsive-web-design"] 5 | } 6 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "es6": false, 4 | "jquery": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": 5, 8 | "sourceType": "script" 9 | }, 10 | "extends": "../../../js/tests/unit/.eslintrc.json" 11 | } 12 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/build.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0run.ps1' %*; exit $LASTEXITCODE" -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/docs/_layouts/page-nowrap.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 | 6 |
7 |

{{ page.title }}

8 |

{{ page.description }}

9 |
10 | 11 | {{ content }} 12 | 13 |
14 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeft { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeft { 13 | animation-name: fadeOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRight { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRight { 13 | animation-name: fadeOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | jasmine: true 3 | 4 | globals: 5 | acquireChart: true 6 | Chart: true 7 | moment: true 8 | waitForResize: true 9 | 10 | # http://eslint.org/docs/rules/ 11 | rules: 12 | # Best Practices 13 | complexity: 0 14 | max-statements: 0 15 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/selectIndex.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.selectIndex = function (cc) { 2 | cc = cc.toLowerCase(); 3 | for (var i = 0; i < this.selectedRegions.length; i++) { 4 | if (cc === this.selectedRegions[i]) { 5 | return i; 6 | } 7 | } 8 | return -1; 9 | }; 10 | -------------------------------------------------------------------------------- /project/admin/vendors/peity/test/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: orange; 3 | margin: 0; 4 | } 5 | 6 | svg { 7 | background: white; 8 | } 9 | 10 | .charts { 11 | align-items: center; 12 | display: flex; 13 | flex-wrap: wrap; 14 | } 15 | 16 | .charts .chart { 17 | padding: 5px; 18 | } 19 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUpBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutUpBig { 13 | animation-name: fadeOutUpBig; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/elements/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | module.exports.Arc = require('./element.arc'); 5 | module.exports.Line = require('./element.line'); 6 | module.exports.Point = require('./element.point'); 7 | module.exports.Rectangle = require('./element.rectangle'); 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/unhighlight.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.unhighlight = function (cc, path) { 2 | cc = cc.toLowerCase(); 3 | path = path || jQuery('#' + this.getCountryId(cc))[0]; 4 | path.setOpacity(1); 5 | if (path.currentFillColor) { 6 | path.setFill(path.currentFillColor); 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /d12-l3-session.php: -------------------------------------------------------------------------------- 1 | "; 10 | echo $_SESSION['age']; 11 | echo "
"; 12 | echo $_SESSION['email']; 13 | 14 | // session_unset(); 15 | ?> -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDownBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutDownBig { 13 | animation-name: fadeOutDownBig; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeftBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeftBig { 13 | animation-name: fadeOutLeftBig; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/src/core/core.defaults.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var helpers = require('../helpers/index'); 4 | 5 | module.exports = { 6 | /** 7 | * @private 8 | */ 9 | _set: function(scope, values) { 10 | return helpers.merge(this[scope] || (this[scope] = {}), values); 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/mobileNL.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "mobileNL", function( value, element ) { 2 | return this.optional( element ) || /^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)6((\s|\s?\-\s?)?[0-9]){8}$/.test( value ); 3 | }, "Please specify a valid mobile number" ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/notEqualTo.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "notEqualTo", function( value, element, param ) { 2 | return this.optional( element ) || !$.validator.methods.equalTo.call( this, value, element, param ); 3 | }, "Please enter a different value, values must not be the same." ); 4 | -------------------------------------------------------------------------------- /d19 crud/header.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | Document 10 | 11 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_exits/fadeOutRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRightBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRightBig { 13 | animation-name: fadeOutRightBig; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/scss/_browser-bugs.scss: -------------------------------------------------------------------------------- 1 | // Wall of Browser Bugs 2 | // 3 | // Better display for the responsive table on the Wall of Browser Bugs. 4 | 5 | .bd-browser-bugs { 6 | td p { 7 | margin-bottom: 0; 8 | } 9 | th:first-child { 10 | width: 18%; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /d11-l3-globals.php: -------------------------------------------------------------------------------- 1 | "; 15 | print_r($_SERVER); 16 | echo ""; 17 | 18 | ?> -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/dateFA.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "dateFA", function( value, element ) { 2 | return this.optional( element ) || /^[1-4]\d{3}\/((0?[1-6]\/((3[0-1])|([1-2][0-9])|(0?[1-9])))|((1[0-2]|(0?[7-9]))\/(30|([1-2][0-9])|(0?[1-9]))))$/.test( value ); 3 | }, $.validator.messages.date ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_entrances/slideInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInUp { 2 | from { 3 | transform: translate3d(0, 100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInUp { 13 | animation-name: slideInUp; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_exits/slideOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutUp { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .slideOutUp { 13 | animation-name: slideOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/bindZoomButtons.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.bindZoomButtons = function () { 2 | var map = this; 3 | this.container.find('.jqvmap-zoomin').click(function(){ 4 | map.zoomIn(); 5 | }); 6 | this.container.find('.jqvmap-zoomout').click(function(){ 7 | map.zoomOut(); 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /project/admin/vendors/jqvmap/src/JQVMap/reset.js: -------------------------------------------------------------------------------- 1 | JQVMap.prototype.reset = function () { 2 | for (var key in this.countries) { 3 | this.countries[key].setFill(this.color); 4 | } 5 | this.scale = this.baseScale; 6 | this.transX = this.baseTransX; 7 | this.transY = this.baseTransY; 8 | this.applyTransform(); 9 | }; 10 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUp { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUp { 14 | animation-name: fadeInUp; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_exits/slideOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutDown { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .slideOutDown { 13 | animation-name: slideOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_exits/slideOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutLeft { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutLeft { 13 | animation-name: slideOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/zooming_exits/zoomOut.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | 50% { 7 | opacity: 0; 8 | transform: scale3d(0.3, 0.3, 0.3); 9 | } 10 | 11 | to { 12 | opacity: 0; 13 | } 14 | } 15 | 16 | .zoomOut { 17 | animation-name: zoomOut; 18 | } 19 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | &[href] { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | text-decoration: none; 9 | background-color: darken($bg, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/docs/axes/radial/README.md: -------------------------------------------------------------------------------- 1 | # Radial Axes 2 | 3 | Radial axes are used specifically for the radar and polar area chart types. These axes overlay the chart area, rather than being positioned on one of the edges. One radial axis is included by default in Chart.js. 4 | 5 | * [linear](./linear.md#linear-radial-axis) -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_entrances/slideInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInDown { 2 | from { 3 | transform: translate3d(0, -100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInDown { 13 | animation-name: slideInDown; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_entrances/slideInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInLeft { 2 | from { 3 | transform: translate3d(-100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInLeft { 13 | animation-name: slideInLeft; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_entrances/slideInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInRight { 2 | from { 3 | transform: translate3d(100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInRight { 13 | animation-name: slideInRight; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/sliding_exits/slideOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutRight { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutRight { 13 | animation-name: slideOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /d11-l1-functions.php: -------------------------------------------------------------------------------- 1 | "; 8 | echo myFunc("Hi", "PHP"); 9 | echo "
"; 10 | echo myFunc(); 11 | echo "
"; 12 | echo myFunc("Hi"); 13 | ?> -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDown { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDown { 14 | animation-name: fadeInDown; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeft { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeft { 14 | animation-name: fadeInLeft; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/assets/scss/_skiplink.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable selector-max-id 2 | 3 | #skippy { 4 | display: block; 5 | padding: 1em; 6 | color: #fff; 7 | background-color: $bd-purple; 8 | outline: 0; 9 | 10 | .skiplink-text { 11 | padding: .5em; 12 | outline: 1px dotted; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation-unobtrusive/.appveyor.yml: -------------------------------------------------------------------------------- 1 | init: 2 | - git config --global core.autocrlf true 3 | install: 4 | - ps: Install-Product node 8 x64 5 | branches: 6 | only: 7 | - master 8 | - /^release\/.*$/ 9 | - /^(.*\/)?ci-.*$/ 10 | build_script: 11 | - ps: .\build.cmd 12 | clone_depth: 1 13 | os: Visual Studio 2017 -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch giro account numbers (not bank numbers) have max 7 digits 3 | */ 4 | $.validator.addMethod( "giroaccountNL", function( value, element ) { 5 | return this.optional( element ) || /^[0-9]{1,7}$/.test( value ); 6 | }, "Please specify a valid giro account number" ); 7 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/ipv4.js: -------------------------------------------------------------------------------- 1 | $.validator.addMethod( "ipv4", function( value, element ) { 2 | return this.optional( element ) || /^(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)$/i.test( value ); 3 | }, "Please enter a valid IP v4 address." ); 4 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- 1 | // TODO check if value starts with <, otherwise don't try stripping anything 2 | $.validator.addMethod( "strippedminlength", function( value, element, param ) { 3 | return $( value ).text().length >= param; 4 | }, $.validator.format( "Please enter at least {0} characters" ) ); 5 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/popper/src/utils/isNumeric.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Tells if a given input is a number 3 | * @method 4 | * @memberof Popper.Utils 5 | * @param {*} input to check 6 | * @return {Boolean} 7 | */ 8 | export default function isNumeric(n) { 9 | return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); 10 | } 11 | -------------------------------------------------------------------------------- /d15-l1-try-catch-through-finally.php: -------------------------------------------------------------------------------- 1 | getMessage(); 9 | }finally{ 10 | echo "
Finally block is always executed"; 11 | } 12 | 13 | ?> -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRight { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRight { 14 | animation-name: fadeInRight; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUpBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUpBig { 14 | animation-name: fadeInUpBig; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jquery-validation/src/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Localized default methods for the jQuery validation plugin. 3 | * Locale: PT_BR 4 | */ 5 | $.extend( $.validator.methods, { 6 | date: function( value, element ) { 7 | return this.optional( element ) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test( value ); 8 | } 9 | } ); 10 | -------------------------------------------------------------------------------- /project/admin/vendors/selectFX/fonts/codropsicons/license.txt: -------------------------------------------------------------------------------- 1 | Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/ 2 | License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | 4 | 5 | Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico 6 | License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/ -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/build/postcss.config.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = (ctx) => ({ 4 | map: ctx.file.dirname.includes('examples') ? false : { 5 | inline: false, 6 | annotation: true, 7 | sourcesContent: true 8 | }, 9 | plugins: { 10 | autoprefixer: { 11 | cascade: false 12 | } 13 | } 14 | }) 15 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/lib/signature.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | exports.LOCAL_FILE_HEADER = "PK\x03\x04"; 3 | exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; 4 | exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; 5 | exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; 6 | exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; 7 | exports.DATA_DESCRIPTOR = "PK\x07\x08"; 8 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/bouncing_exits/bounceOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutLeft { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(-2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutLeft { 14 | animation-name: bounceOutLeft; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDownBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDownBig { 14 | animation-name: fadeInDownBig; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeftBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeftBig { 14 | animation-name: fadeInLeftBig; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/fading_entrances/fadeInRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRightBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRightBig { 14 | animation-name: fadeInRightBig; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | } 11 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/bouncing_exits/bounceOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutRight { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(-20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutRight { 14 | animation-name: bounceOutRight; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/lightspeed/lightSpeedOut.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | transform: translate3d(100%, 0, 0) skewX(30deg); 8 | opacity: 0; 9 | } 10 | } 11 | 12 | .lightSpeedOut { 13 | animation-name: lightSpeedOut; 14 | animation-timing-function: ease-in; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/popper.js/packages/popper/src/utils/getWindow.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Get the window associated with the element 3 | * @argument {Element} element 4 | * @returns {Window} 5 | */ 6 | export default function getWindow(element) { 7 | const ownerDocument = element.ownerDocument; 8 | return ownerDocument ? ownerDocument.defaultView : window; 9 | } 10 | -------------------------------------------------------------------------------- /d12-l2-env.php: -------------------------------------------------------------------------------- 1 | "; 5 | print_r($_ENV); 6 | echo ""; 7 | 8 | $_ENV['DB_USER'] = "root"; 9 | $myInfo = "Web Developer"; 10 | 11 | function myFunc() { 12 | echo $_ENV['DB_USER']."
".$GLOBALS['myInfo']; 13 | } 14 | 15 | // about $_env: https://www.php.net/manual/en/reserved.variables.environment.php 16 | 17 | 18 | ?> -------------------------------------------------------------------------------- /project/admin/vendors/animate.css/source/rotating_exits/rotateOut.css: -------------------------------------------------------------------------------- 1 | @keyframes rotateOut { 2 | from { 3 | transform-origin: center; 4 | opacity: 1; 5 | } 6 | 7 | to { 8 | transform-origin: center; 9 | transform: rotate3d(0, 0, 1, 200deg); 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .rotateOut { 15 | animation-name: rotateOut; 16 | } 17 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flot/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | 11 | test: 12 | ./node_modules/.bin/jshint *jquery.flot.js 13 | -------------------------------------------------------------------------------- /project/admin/vendors/jszip/lib/defaults.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | exports.base64 = false; 3 | exports.binary = false; 4 | exports.dir = false; 5 | exports.createFolders = true; 6 | exports.date = null; 7 | exports.compression = null; 8 | exports.compressionOptions = null; 9 | exports.comment = null; 10 | exports.unixPermissions = null; 11 | exports.dosPermissions = null; 12 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/docs/4.1/examples/pricing/pricing.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | @media (min-width: 768px) { 5 | html { 6 | font-size: 16px; 7 | } 8 | } 9 | 10 | .container { 11 | max-width: 960px; 12 | } 13 | 14 | .pricing-header { 15 | max-width: 700px; 16 | } 17 | 18 | .card-deck .card { 19 | min-width: 220px; 20 | } 21 | -------------------------------------------------------------------------------- /project/admin/vendors/chart.js/docs/style.css: -------------------------------------------------------------------------------- 1 | a.anchorjs-link { 2 | color: rgba(65, 131, 196, 0.1); 3 | font-weight: 400; 4 | text-decoration: none; 5 | transition: color 100ms ease-out; 6 | z-index: 999; 7 | } 8 | 9 | a.anchorjs-link:hover { 10 | color: rgba(65, 131, 196, 1); 11 | } 12 | 13 | sup { 14 | font-size: 0.75em !important; 15 | } 16 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/admin/vendors/gmaps/jsdoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": { 3 | "include": [ "./lib" ], 4 | "includePattern": ".js$" 5 | }, 6 | "plugins": [ 7 | "plugins/markdown" 8 | ], 9 | "markdown": { 10 | "hardwrap": true 11 | }, 12 | "opts": { 13 | "template": "node_modules/docdash", 14 | "recurse": true, 15 | "destination": "./docs" 16 | } 17 | } -------------------------------------------------------------------------------- /project/admin/vendors/jszip/documentation/api_jszip/constructor.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "new JSZip() or JSZip()" 3 | layout: default 4 | section: api 5 | --- 6 | 7 | Create a new JSZip instance. 8 | 9 | __Returns__ : A new JSZip. 10 | 11 | __Since__: v1.0.0 12 | 13 | ## Example 14 | 15 | ```js 16 | var zip = new JSZip(); 17 | // same as 18 | var zip = JSZip(); 19 | ``` 20 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | a#{$parent} { 10 | @include hover-focus { 11 | color: darken($color, 10%) !important; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /project/admin/vendors/bootstrap/site/_layouts/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include header.html %} 5 | 6 | 7 | {% include skippy.html %} 8 | 9 | {% include docs-navbar.html %} 10 | 11 | {{ content }} 12 | 13 | {% include footer.html %} 14 | {% include scripts.html %} 15 | 16 | 17 | -------------------------------------------------------------------------------- /project/admin/vendors/flag-icon-css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flag-icon-css", 3 | "main": [ 4 | "css/flag-icon.min.css", 5 | "less/flag-icon.less", 6 | "sass/_flag-icon.scss" 7 | ], 8 | "ignore": [ 9 | "**/.*", 10 | "assets", 11 | "Gruntfile.coffee", 12 | "index.html", 13 | "LICENSE", 14 | "package.json" 15 | ] 16 | } 17 | --------------------------------------------------------------------------------