├── .gitignore
├── blog
├── .gitignore
├── db.php
├── src
│ └── input.css
├── admin
│ ├── plugins
│ │ └── Trumbowyg-main
│ │ │ ├── .bowerrc
│ │ │ ├── docs
│ │ │ ├── robots.txt
│ │ │ ├── .gitignore
│ │ │ ├── favicon.png
│ │ │ ├── fonts
│ │ │ │ ├── panton.eot
│ │ │ │ ├── panton.ttf
│ │ │ │ ├── panton.woff
│ │ │ │ ├── panton.woff2
│ │ │ │ ├── open-sans-light.woff2
│ │ │ │ ├── open-sans-regular.woff2
│ │ │ │ ├── open-sans-semibold.woff2
│ │ │ │ └── jetbrains-mono-regular.woff2
│ │ │ ├── humans.txt
│ │ │ ├── documentation.html
│ │ │ ├── scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── main.scss
│ │ │ ├── demos
│ │ │ │ └── js
│ │ │ │ │ └── runExampleCode.js
│ │ │ └── package.json
│ │ │ ├── banner.jpg
│ │ │ ├── sponsors
│ │ │ └── socialoptic.png
│ │ │ ├── src
│ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ ├── em.svg
│ │ │ │ ├── horizontal-rule.svg
│ │ │ │ ├── italic.svg
│ │ │ │ ├── justify-center.svg
│ │ │ │ ├── justify-full.svg
│ │ │ │ ├── justify-left.svg
│ │ │ │ ├── justify-right.svg
│ │ │ │ ├── p.svg
│ │ │ │ ├── unordered-list.svg
│ │ │ │ ├── close.svg
│ │ │ │ ├── redo.svg
│ │ │ │ ├── undo.svg
│ │ │ │ ├── view-html.svg
│ │ │ │ ├── h4.svg
│ │ │ │ ├── h1.svg
│ │ │ │ ├── removeformat.svg
│ │ │ │ └── insert-image.svg
│ │ │ ├── .gitattributes
│ │ │ ├── plugins
│ │ │ ├── fontsize
│ │ │ │ └── ui
│ │ │ │ │ └── icons
│ │ │ │ │ └── fontsize.svg
│ │ │ ├── noembed
│ │ │ │ └── ui
│ │ │ │ │ └── icons
│ │ │ │ │ └── noembed.svg
│ │ │ ├── colors
│ │ │ │ └── ui
│ │ │ │ │ └── icons
│ │ │ │ │ ├── fore-color.svg
│ │ │ │ │ └── back-color.svg
│ │ │ ├── indent
│ │ │ │ └── ui
│ │ │ │ │ └── icons
│ │ │ │ │ ├── indent.svg
│ │ │ │ │ └── outdent.svg
│ │ │ ├── highlight
│ │ │ │ └── ui
│ │ │ │ │ └── sass
│ │ │ │ │ └── trumbowyg.highlight.scss
│ │ │ └── lineheight
│ │ │ │ └── ui
│ │ │ │ └── icons
│ │ │ │ └── lineheight.svg
│ │ │ ├── .npmignore
│ │ │ ├── .gitignore
│ │ │ └── .editorconfig
│ ├── vendor
│ │ ├── bootstrap
│ │ │ └── scss
│ │ │ │ ├── utilities
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _overflow.scss
│ │ │ │ ├── _interactions.scss
│ │ │ │ ├── _screenreaders.scss
│ │ │ │ ├── _visibility.scss
│ │ │ │ ├── _shadows.scss
│ │ │ │ ├── _float.scss
│ │ │ │ └── _align.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── mixins
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _size.scss
│ │ │ │ ├── _lists.scss
│ │ │ │ ├── _text-truncate.scss
│ │ │ │ ├── _resize.scss
│ │ │ │ ├── _visibility.scss
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _text-hide.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _nav-divider.scss
│ │ │ │ └── _float.scss
│ │ │ │ └── _transitions.scss
│ │ └── fontawesome-free
│ │ │ ├── webfonts
│ │ │ ├── fa-brands-400.eot
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff
│ │ │ ├── fa-regular-400.eot
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-solid-900.eot
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-solid-900.woff
│ │ │ ├── fa-solid-900.woff2
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.woff
│ │ │ └── fa-regular-400.woff2
│ │ │ ├── less
│ │ │ ├── _screen-reader.less
│ │ │ ├── _fixed-width.less
│ │ │ ├── v4-shims.less
│ │ │ ├── _core.less
│ │ │ ├── _animated.less
│ │ │ └── _list.less
│ │ │ ├── scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _screen-reader.scss
│ │ │ ├── v4-shims.scss
│ │ │ ├── _animated.scss
│ │ │ ├── _list.scss
│ │ │ └── _core.scss
│ │ │ ├── attribution.js
│ │ │ └── svgs
│ │ │ ├── solid
│ │ │ ├── square-full.svg
│ │ │ ├── egg.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── sort-down.svg
│ │ │ ├── sort-up.svg
│ │ │ ├── square.svg
│ │ │ ├── stop.svg
│ │ │ ├── play.svg
│ │ │ ├── minus.svg
│ │ │ ├── window-minimize.svg
│ │ │ ├── volume-off.svg
│ │ │ ├── caret-down.svg
│ │ │ ├── cheese.svg
│ │ │ ├── folder.svg
│ │ │ ├── ice-cream.svg
│ │ │ ├── mouse.svg
│ │ │ ├── comment-alt.svg
│ │ │ ├── star-half.svg
│ │ │ ├── sd-card.svg
│ │ │ ├── caret-right.svg
│ │ │ ├── genderless.svg
│ │ │ ├── hockey-puck.svg
│ │ │ ├── adjust.svg
│ │ │ ├── caret-up.svg
│ │ │ ├── columns.svg
│ │ │ ├── bread-slice.svg
│ │ │ ├── caret-left.svg
│ │ │ ├── location-arrow.svg
│ │ │ ├── map-marker.svg
│ │ │ ├── border-all.svg
│ │ │ ├── dot-circle.svg
│ │ │ ├── minus-circle.svg
│ │ │ ├── mobile.svg
│ │ │ ├── stop-circle.svg
│ │ │ ├── tablet.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── paragraph.svg
│ │ │ ├── play-circle.svg
│ │ │ ├── voicemail.svg
│ │ │ ├── file.svg
│ │ │ ├── glass-whiskey.svg
│ │ │ ├── angle-left.svg
│ │ │ ├── angle-up.svg
│ │ │ ├── slash.svg
│ │ │ ├── step-backward.svg
│ │ │ ├── step-forward.svg
│ │ │ ├── sticky-note.svg
│ │ │ ├── toggle-on.svg
│ │ │ ├── angle-down.svg
│ │ │ ├── angle-right.svg
│ │ │ ├── dice-one.svg
│ │ │ ├── sort.svg
│ │ │ ├── grip-lines.svg
│ │ │ ├── table.svg
│ │ │ ├── bolt.svg
│ │ │ ├── burn.svg
│ │ │ ├── chalkboard.svg
│ │ │ ├── filter.svg
│ │ │ └── heart.svg
│ │ │ ├── brands
│ │ │ ├── houzz.svg
│ │ │ ├── flipboard.svg
│ │ │ ├── unsplash.svg
│ │ │ ├── yandex-international.svg
│ │ │ ├── black-tie.svg
│ │ │ ├── ethereum.svg
│ │ │ ├── bandcamp.svg
│ │ │ ├── strava.svg
│ │ │ ├── microsoft.svg
│ │ │ ├── gitter.svg
│ │ │ ├── vuejs.svg
│ │ │ ├── css3.svg
│ │ │ ├── think-peaks.svg
│ │ │ ├── windows.svg
│ │ │ ├── y-combinator.svg
│ │ │ ├── mix.svg
│ │ │ ├── google-drive.svg
│ │ │ ├── uikit.svg
│ │ │ ├── angular.svg
│ │ │ ├── patreon.svg
│ │ │ ├── viacoin.svg
│ │ │ ├── modx.svg
│ │ │ ├── npm.svg
│ │ │ ├── deviantart.svg
│ │ │ ├── facebook-f.svg
│ │ │ ├── servicestack.svg
│ │ │ ├── dyalog.svg
│ │ │ ├── adn.svg
│ │ │ ├── figma.svg
│ │ │ ├── hacker-news.svg
│ │ │ ├── instalod.svg
│ │ │ ├── dochub.svg
│ │ │ ├── firstdraft.svg
│ │ │ ├── artstation.svg
│ │ │ ├── html5.svg
│ │ │ ├── magento.svg
│ │ │ ├── twitch.svg
│ │ │ ├── yahoo.svg
│ │ │ ├── autoprefixer.svg
│ │ │ └── yandex.svg
│ │ │ └── regular
│ │ │ ├── window-minimize.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── square.svg
│ │ │ └── star-half.svg
│ ├── js
│ │ └── demo
│ │ │ └── datatables-demo.js
│ ├── template.php
│ └── dashboard.php
├── images
│ ├── T.png
│ ├── a.jpg
│ ├── b.jpg
│ ├── c.jpg
│ ├── d.jpg
│ ├── logo.jpg
│ ├── blog
│ │ ├── blog1.jpg
│ │ ├── 64ac15fbd5588.jpg
│ │ ├── 64ac165c93056.jpg
│ │ ├── 64b53469991f5.jpg
│ │ ├── 64b534bfe6165.jpg
│ │ ├── 64b543a903418.jpg
│ │ ├── 64b543daa276e.jpg
│ │ └── 64b9323f45842.jpg
│ ├── hero-banner.jpg
│ ├── users
│ │ ├── user1.png
│ │ ├── default.jpg
│ │ ├── ChsUGX648b11e3ca138380053152803June152023Thursdaypm.webp
│ │ └── nbWJDl6481ea8150f6e494713164937June082023Thursdaypm.jpg
│ └── Texobuzz Watch.png
├── blog.php
├── signout.php
├── login.php
├── forgetPass.php
├── tailwind.config.js
├── package.json
├── index.php
└── .htaccess
├── php2
├── style.css
├── images.png
├── db.php
├── admin
│ ├── vendor
│ │ ├── bootstrap
│ │ │ └── scss
│ │ │ │ ├── utilities
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _overflow.scss
│ │ │ │ ├── _interactions.scss
│ │ │ │ ├── _screenreaders.scss
│ │ │ │ ├── _visibility.scss
│ │ │ │ ├── _shadows.scss
│ │ │ │ ├── _float.scss
│ │ │ │ └── _align.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── mixins
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _size.scss
│ │ │ │ ├── _lists.scss
│ │ │ │ ├── _text-truncate.scss
│ │ │ │ ├── _resize.scss
│ │ │ │ ├── _visibility.scss
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _text-hide.scss
│ │ │ │ ├── _badge.scss
│ │ │ │ ├── _nav-divider.scss
│ │ │ │ └── _float.scss
│ │ │ │ └── _transitions.scss
│ │ └── fontawesome-free
│ │ │ ├── webfonts
│ │ │ ├── fa-brands-400.eot
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff
│ │ │ ├── fa-regular-400.eot
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-solid-900.eot
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-solid-900.woff
│ │ │ ├── fa-solid-900.woff2
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.woff
│ │ │ └── fa-regular-400.woff2
│ │ │ ├── less
│ │ │ ├── _screen-reader.less
│ │ │ ├── _fixed-width.less
│ │ │ ├── v4-shims.less
│ │ │ ├── _core.less
│ │ │ ├── _animated.less
│ │ │ └── _list.less
│ │ │ ├── scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _screen-reader.scss
│ │ │ ├── v4-shims.scss
│ │ │ ├── _animated.scss
│ │ │ ├── _list.scss
│ │ │ └── _core.scss
│ │ │ ├── attribution.js
│ │ │ └── svgs
│ │ │ ├── solid
│ │ │ ├── square-full.svg
│ │ │ ├── egg.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── sort-down.svg
│ │ │ ├── sort-up.svg
│ │ │ ├── square.svg
│ │ │ ├── stop.svg
│ │ │ ├── play.svg
│ │ │ ├── minus.svg
│ │ │ ├── window-minimize.svg
│ │ │ ├── volume-off.svg
│ │ │ ├── caret-down.svg
│ │ │ ├── cheese.svg
│ │ │ ├── folder.svg
│ │ │ ├── ice-cream.svg
│ │ │ ├── mouse.svg
│ │ │ ├── comment-alt.svg
│ │ │ ├── star-half.svg
│ │ │ ├── sd-card.svg
│ │ │ ├── caret-right.svg
│ │ │ ├── genderless.svg
│ │ │ ├── hockey-puck.svg
│ │ │ ├── adjust.svg
│ │ │ ├── caret-up.svg
│ │ │ ├── columns.svg
│ │ │ ├── bread-slice.svg
│ │ │ ├── caret-left.svg
│ │ │ ├── location-arrow.svg
│ │ │ ├── map-marker.svg
│ │ │ ├── border-all.svg
│ │ │ ├── dot-circle.svg
│ │ │ ├── minus-circle.svg
│ │ │ ├── mobile.svg
│ │ │ ├── stop-circle.svg
│ │ │ ├── tablet.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── paragraph.svg
│ │ │ ├── play-circle.svg
│ │ │ ├── voicemail.svg
│ │ │ ├── file.svg
│ │ │ ├── glass-whiskey.svg
│ │ │ ├── angle-left.svg
│ │ │ ├── angle-up.svg
│ │ │ ├── slash.svg
│ │ │ ├── step-backward.svg
│ │ │ ├── step-forward.svg
│ │ │ ├── sticky-note.svg
│ │ │ ├── toggle-on.svg
│ │ │ ├── angle-down.svg
│ │ │ ├── angle-right.svg
│ │ │ ├── dice-one.svg
│ │ │ ├── sort.svg
│ │ │ ├── grip-lines.svg
│ │ │ ├── table.svg
│ │ │ ├── bolt.svg
│ │ │ ├── burn.svg
│ │ │ └── chalkboard.svg
│ │ │ ├── brands
│ │ │ ├── houzz.svg
│ │ │ ├── flipboard.svg
│ │ │ ├── unsplash.svg
│ │ │ ├── yandex-international.svg
│ │ │ ├── black-tie.svg
│ │ │ ├── ethereum.svg
│ │ │ ├── bandcamp.svg
│ │ │ ├── strava.svg
│ │ │ ├── microsoft.svg
│ │ │ ├── gitter.svg
│ │ │ ├── vuejs.svg
│ │ │ ├── css3.svg
│ │ │ ├── think-peaks.svg
│ │ │ ├── windows.svg
│ │ │ ├── y-combinator.svg
│ │ │ ├── mix.svg
│ │ │ ├── google-drive.svg
│ │ │ ├── uikit.svg
│ │ │ ├── angular.svg
│ │ │ ├── patreon.svg
│ │ │ ├── viacoin.svg
│ │ │ ├── modx.svg
│ │ │ ├── npm.svg
│ │ │ ├── deviantart.svg
│ │ │ ├── facebook-f.svg
│ │ │ ├── servicestack.svg
│ │ │ ├── dyalog.svg
│ │ │ ├── adn.svg
│ │ │ ├── figma.svg
│ │ │ ├── hacker-news.svg
│ │ │ ├── instalod.svg
│ │ │ ├── dochub.svg
│ │ │ ├── firstdraft.svg
│ │ │ ├── artstation.svg
│ │ │ ├── html5.svg
│ │ │ ├── magento.svg
│ │ │ ├── twitch.svg
│ │ │ ├── yahoo.svg
│ │ │ ├── autoprefixer.svg
│ │ │ └── yandex.svg
│ │ │ └── regular
│ │ │ ├── window-minimize.svg
│ │ │ ├── circle.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── window-maximize.svg
│ │ │ ├── square.svg
│ │ │ └── star-half.svg
│ └── js
│ │ └── demo
│ │ └── datatables-demo.js
├── node_modules
│ ├── jquery
│ │ ├── src
│ │ │ ├── var
│ │ │ │ ├── arr.js
│ │ │ │ ├── document.js
│ │ │ │ ├── getProto.js
│ │ │ │ ├── push.js
│ │ │ │ ├── class2type.js
│ │ │ │ ├── indexOf.js
│ │ │ │ ├── rcheckableType.js
│ │ │ │ ├── slice.js
│ │ │ │ ├── pnum.js
│ │ │ │ ├── pop.js
│ │ │ │ ├── fnToString.js
│ │ │ │ ├── sort.js
│ │ │ │ ├── splice.js
│ │ │ │ ├── toString.js
│ │ │ │ ├── hasOwn.js
│ │ │ │ ├── documentElement.js
│ │ │ │ ├── support.js
│ │ │ │ ├── ObjectFunctionString.js
│ │ │ │ ├── isWindow.js
│ │ │ │ ├── whitespace.js
│ │ │ │ ├── rcssNum.js
│ │ │ │ ├── rnothtmlwhite.js
│ │ │ │ ├── rtrimCSS.js
│ │ │ │ └── flat.js
│ │ │ ├── ajax
│ │ │ │ └── var
│ │ │ │ │ ├── rquery.js
│ │ │ │ │ ├── location.js
│ │ │ │ │ └── nonce.js
│ │ │ ├── core
│ │ │ │ ├── var
│ │ │ │ │ ├── rhtml.js
│ │ │ │ │ └── rsingleTag.js
│ │ │ │ ├── nodeName.js
│ │ │ │ ├── readyException.js
│ │ │ │ └── stripAndCollapse.js
│ │ │ ├── css
│ │ │ │ ├── var
│ │ │ │ │ ├── rcustomProp.js
│ │ │ │ │ ├── cssExpand.js
│ │ │ │ │ ├── rboxStyle.js
│ │ │ │ │ └── rnumnonpx.js
│ │ │ │ └── hiddenVisibleSelectors.js
│ │ │ ├── data
│ │ │ │ └── var
│ │ │ │ │ ├── dataPriv.js
│ │ │ │ │ ├── dataUser.js
│ │ │ │ │ └── acceptData.js
│ │ │ ├── manipulation
│ │ │ │ └── var
│ │ │ │ │ ├── rscriptType.js
│ │ │ │ │ └── rtagName.js
│ │ │ ├── traversing
│ │ │ │ └── var
│ │ │ │ │ ├── rneedsContext.js
│ │ │ │ │ └── siblings.js
│ │ │ ├── attributes.js
│ │ │ ├── effects
│ │ │ │ └── animatedSelector.js
│ │ │ └── deprecated
│ │ │ │ └── ajax-event-alias.js
│ │ └── bower.json
│ └── toastr
│ │ ├── tests
│ │ └── unit
│ │ │ ├── x.js
│ │ │ └── qunit-helper.js
│ │ ├── toastr-icon.png
│ │ ├── nuget
│ │ ├── toastr.1.0.0.nupkg
│ │ ├── toastr.1.0.1.nupkg
│ │ ├── toastr.1.0.2.nupkg
│ │ ├── toastr.1.0.3.nupkg
│ │ ├── toastr.1.1.0.nupkg
│ │ ├── toastr.1.1.1.nupkg
│ │ ├── toastr.1.1.2.nupkg
│ │ ├── toastr.1.1.3.nupkg
│ │ ├── toastr.1.1.4.nupkg
│ │ ├── toastr.1.1.5.nupkg
│ │ ├── toastr.1.2.0.nupkg
│ │ ├── toastr.1.2.1.nupkg
│ │ ├── toastr.1.2.2.nupkg
│ │ ├── toastr.1.3.0.nupkg
│ │ ├── toastr.1.3.1.nupkg
│ │ ├── toastr.2.0.1.nupkg
│ │ ├── toastr.2.0.2.nupkg
│ │ ├── toastr.2.0.3.nupkg
│ │ ├── toastr.1.0.1.nuspec
│ │ ├── toastr.1.0.2.nuspec
│ │ ├── toastr.1.1.4.1.nupkg
│ │ ├── toastr.1.1.4.2.nupkg
│ │ └── toastr.2.0.0-rc1.nupkg
│ │ └── .travis.yml
├── package.json
├── img
│ ├── IfdmWD6490524a9a729132635150410June1923Mondaypm.jpg
│ ├── iRmtSW64905218c59d9184987150320June1923Mondaypm.jpg
│ ├── iftAHb6495ab5b4398f452064162531June2323Fridaypm.png
│ └── qRJwNg6495ade096e33216892163616June2323Fridaypm.jpg
├── imgUTEMuf64905151021d9884017150001June1923Mondaypm.webp
├── Log-out.php
├── Blog.php
├── about.php
├── index.php
└── .htaccess
├── l15-session-part2.php
├── l15-session-part1.php
├── l12get.php
├── l1-var-comment-echo.php
├── l11-htmlPHPmix.php
├── l14-scope.php
├── l13GetFormData.php
├── l6-const.php
└── hws
├── 4-10-2023
├── saif.php
└── tayyab.php
├── 4-6-2023
└── Saif
│ └── index.php
└── 4-17-2023
└── index.php
/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/blog/db.php:
--------------------------------------------------------------------------------
1 |
6 |
7 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/blog/images/blog/blog1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/blog1.jpg
--------------------------------------------------------------------------------
/blog/images/hero-banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/hero-banner.jpg
--------------------------------------------------------------------------------
/blog/images/users/user1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/users/user1.png
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return [];
5 | } );
6 |
--------------------------------------------------------------------------------
/blog/blog.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
--------------------------------------------------------------------------------
/blog/images/users/default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/users/default.jpg
--------------------------------------------------------------------------------
/blog/signout.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/blog/forgetPass.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/blog/images/blog/64ac15fbd5588.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64ac15fbd5588.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64ac165c93056.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64ac165c93056.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64b53469991f5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64b53469991f5.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64b534bfe6165.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64b534bfe6165.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64b543a903418.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64b543a903418.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64b543daa276e.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64b543daa276e.jpg
--------------------------------------------------------------------------------
/blog/images/blog/64b9323f45842.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/blog/64b9323f45842.jpg
--------------------------------------------------------------------------------
/l15-session-part1.php:
--------------------------------------------------------------------------------
1 | ";
6 | }
7 |
8 | echo $_GET["religion"];
9 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/ajax/var/location.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return window.location;
5 | } );
6 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return { guid: Date.now() };
5 | } );
6 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/core/var/rhtml.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | return ( /HTML$/i );
6 |
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/css/var/rcustomProp.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | return /^--/;
6 |
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/getProto.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return Object.getPrototypeOf;
5 | } );
6 |
--------------------------------------------------------------------------------
/php2/node_modules/toastr/tests/unit/x.js:
--------------------------------------------------------------------------------
1 | test('test test', 1, function () {
2 | ok(1 === 1, '1 equals 1');
3 | });
4 |
--------------------------------------------------------------------------------
/php2/node_modules/toastr/toastr-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/node_modules/toastr/toastr-icon.png
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/plugins/Trumbowyg-main/banner.jpg
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.push;
7 | } );
8 |
--------------------------------------------------------------------------------
/l1-var-comment-echo.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/l11-htmlPHPmix.php:
--------------------------------------------------------------------------------
1 | = 18) {
4 | ?>
5 |
Welcome
6 |
7 | Sorry
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // [[Class]] -> type pairs
5 | return {};
6 | } );
7 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.indexOf;
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /^(?:checkbox|radio)$/i );
5 | } );
6 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.slice;
7 | } );
8 |
--------------------------------------------------------------------------------
/blog/admin/js/demo/datatables-demo.js:
--------------------------------------------------------------------------------
1 | // Call the dataTables jQuery plugin
2 | $(document).ready(function() {
3 | $('#dataTable').DataTable();
4 | });
5 |
--------------------------------------------------------------------------------
/l14-scope.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/horizontal-rule.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/italic.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/php2/img/IfdmWD6490524a9a729132635150410June1923Mondaypm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/img/IfdmWD6490524a9a729132635150410June1923Mondaypm.jpg
--------------------------------------------------------------------------------
/php2/img/iRmtSW64905218c59d9184987150320June1923Mondaypm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/img/iRmtSW64905218c59d9184987150320June1923Mondaypm.jpg
--------------------------------------------------------------------------------
/php2/img/iftAHb6495ab5b4398f452064162531June2323Fridaypm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/img/iftAHb6495ab5b4398f452064162531June2323Fridaypm.png
--------------------------------------------------------------------------------
/php2/img/qRJwNg6495ade096e33216892163616June2323Fridaypm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/img/qRJwNg6495ade096e33216892163616June2323Fridaypm.jpg
--------------------------------------------------------------------------------
/php2/imgUTEMuf64905151021d9884017150001June1923Mondaypm.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/imgUTEMuf64905151021d9884017150001June1923Mondaypm.webp
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./class2type"
3 | ], function( class2type ) {
4 | "use strict";
5 |
6 | return class2type.hasOwnProperty;
7 | } );
8 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/php2/admin/vendor/fontawesome-free/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/documentElement.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./document"
3 | ], function( document ) {
4 | "use strict";
5 |
6 | return document.documentElement;
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // All support tests are defined in their respective modules.
5 | return {};
6 | } );
7 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-light.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-light.woff2
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-regular.woff2
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-semibold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/plugins/Trumbowyg-main/docs/fonts/open-sans-semibold.woff2
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/_screen-reader.less:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { .sr-only(); }
5 | .sr-only-focusable { .sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/l13GetFormData.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/l6-const.php:
--------------------------------------------------------------------------------
1 | ";
8 |
9 | define("y", "Barishal");
10 | echo y;
11 | ?>
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/less/_screen-reader.less:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { .sr-only(); }
5 | .sr-only-focusable { .sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/ObjectFunctionString.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./fnToString"
3 | ], function( fnToString ) {
4 | "use strict";
5 |
6 | return fnToString.call( Object );
7 | } );
8 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/justify-center.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/justify-full.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/justify-left.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/justify-right.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/_fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | text-align: center;
5 | width: (20em / 16);
6 | }
7 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | text-align: center;
5 | width: $fa-fw-width;
6 | }
7 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/less/_fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | text-align: center;
5 | width: (20em / 16);
6 | }
7 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | text-align: center;
5 | width: $fa-fw-width;
6 | }
7 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/css/var/rboxStyle.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./cssExpand"
3 | ], function( cssExpand ) {
4 | "use strict";
5 |
6 | return new RegExp( cssExpand.join( "|" ), "i" );
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/isWindow.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return function isWindow( obj ) {
5 | return obj != null && obj === obj.window;
6 | };
7 |
8 | } );
9 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/whitespace.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | // https://www.w3.org/TR/css3-selectors/#whitespace
6 | return "[\\x20\\t\\r\\n\\f]";
7 |
8 | } );
9 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/fonts/jetbrains-mono-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/admin/plugins/Trumbowyg-main/docs/fonts/jetbrains-mono-regular.woff2
--------------------------------------------------------------------------------
/blog/images/users/ChsUGX648b11e3ca138380053152803June152023Thursdaypm.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/users/ChsUGX648b11e3ca138380053152803June152023Thursdaypm.webp
--------------------------------------------------------------------------------
/blog/images/users/nbWJDl6481ea8150f6e494713164937June082023Thursdaypm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b79ePHP/master/blog/images/users/nbWJDl6481ea8150f6e494713164937June082023Thursdaypm.jpg
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | "use strict";
5 |
6 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
7 | } );
8 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_overflow.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $value in $overflows {
4 | .overflow-#{$value} { overflow: $value !important; }
5 | }
6 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only; }
5 | .sr-only-focusable { @include sr-only-focusable; }
6 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_overflow.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $value in $overflows {
4 | .overflow-#{$value} { overflow: $value !important; }
5 | }
6 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only; }
5 | .sr-only-focusable { @include sr-only-focusable; }
6 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # SCSS and JS files must always use LF for tools to work
5 | *.js eol=lf
6 | *.scss eol=lf
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/fontsize/ui/icons/fontsize.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_interactions.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $value in $user-selects {
4 | .user-select-#{$value} { user-select: $value !important; }
5 | }
6 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_interactions.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $value in $user-selects {
4 | .user-select-#{$value} { user-select: $value !important; }
5 | }
6 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | "use strict";
6 |
7 | return jQuery.expr.match.needsContext;
8 | } );
9 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/mixins/_size.scss:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | @mixin size($width, $height: $width) {
4 | width: $width;
5 | height: $height;
6 | @include deprecate("`size()`", "v4.3.0", "v5");
7 | }
8 |
--------------------------------------------------------------------------------
/hws/4-10-2023/saif.php:
--------------------------------------------------------------------------------
1 | ";
7 | echo "
";
8 | }
9 |
10 | ?>
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/mixins/_size.scss:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | @mixin size($width, $height: $width) {
4 | width: $width;
5 | height: $height;
6 | @include deprecate("`size()`", "v4.3.0", "v5");
7 | }
8 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/rcssNum.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/pnum"
3 | ], function( pnum ) {
4 |
5 | "use strict";
6 |
7 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
8 |
9 | } );
10 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/blog/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: ["./**/*.{html,js,php}"],
4 | theme: {
5 | extend: {},
6 | },
7 | plugins: [require("daisyui")],
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/p.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/unordered-list.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/attribution.js:
--------------------------------------------------------------------------------
1 | console.log(`Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
3 | `)
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/attribution.js:
--------------------------------------------------------------------------------
1 | console.log(`Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
3 | `)
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/noembed/ui/icons/noembed.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/hws/4-6-2023/Saif/index.php:
--------------------------------------------------------------------------------
1 | ";
5 |
6 | $capital = str_replace("Dhaka","Delhi",$cap);
7 | $capital = str_replace("Bangladesh","India",$capital);
8 | echo $capital;
9 | ?>
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/colors/ui/icons/fore-color.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/close.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/hws/4-10-2023/tayyab.php:
--------------------------------------------------------------------------------
1 | ";
6 | $b++;
7 | fat ($b, $n, $l);
8 | }
9 | }
10 |
11 | fat(1, rand(2, 19), 10);
12 | ?>
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/.npmignore:
--------------------------------------------------------------------------------
1 | Gulpfile.js
2 | banner.jpg
3 | bower.json
4 | src
5 | docs
6 | bower_components
7 | .gitattributes
8 | .gitignore
9 | .jshintrc
10 | .github
11 | .idea
12 | .bowerrc
13 | sponsors
14 | BACKERS.md
15 | CONTRIBUTORS.md
16 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/mixins/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | // Visibility
4 |
5 | @mixin invisible($visibility) {
6 | visibility: $visibility !important;
7 | @include deprecate("`invisible()`", "v4.3.0", "v5");
8 | }
9 |
--------------------------------------------------------------------------------
/blog/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "devDependencies": {
3 | "tailwindcss": "^3.3.2"
4 | },
5 | "dependencies": {
6 | "@fortawesome/fontawesome-free": "^6.4.0",
7 | "daisyui": "^2.51.6",
8 | "jquery": "^3.7.0",
9 | "toastr": "^2.1.4"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/mixins/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | // Visibility
4 |
5 | @mixin invisible($visibility) {
6 | visibility: $visibility !important;
7 | @include deprecate("`invisible()`", "v4.3.0", "v5");
8 | }
9 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/rnothtmlwhite.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // Only count HTML whitespace
5 | // Other whitespace should count in values
6 | // https://infra.spec.whatwg.org/#ascii-whitespace
7 | return ( /[^\x20\t\r\n\f]+/g );
8 | } );
9 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/rtrimCSS.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./whitespace"
3 | ], function( whitespace ) {
4 |
5 | "use strict";
6 |
7 | return new RegExp(
8 | "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
9 | "g"
10 | );
11 |
12 | } );
13 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/core/nodeName.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | function nodeName( elem, name ) {
6 |
7 | return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
8 |
9 | }
10 |
11 | return nodeName;
12 |
13 | } );
14 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/core/readyException.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | "use strict";
6 |
7 | jQuery.readyException = function( error ) {
8 | window.setTimeout( function() {
9 | throw error;
10 | } );
11 | };
12 |
13 | } );
14 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/humans.txt:
--------------------------------------------------------------------------------
1 | # humanstxt.org/
2 | # The humans responsible & technology colophon
3 |
4 | # TEAM
5 |
6 | Alex-D -- Main developer -- @AlexandreDemode
7 |
8 | # TECHNOLOGY COLOPHON
9 |
10 | HTML5, CSS3
11 | JavaScript, jQuery
12 |
--------------------------------------------------------------------------------
/php2/node_modules/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 | }
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/redo.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/undo.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/view-html.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | //
4 | // Visibility utilities
5 | //
6 |
7 | .visible {
8 | visibility: visible !important;
9 | }
10 |
11 | .invisible {
12 | visibility: hidden !important;
13 | }
14 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/v4-shims.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | */
5 | @import 'variables';
6 | @import 'shims';
7 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_visibility.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | //
4 | // Visibility utilities
5 | //
6 |
7 | .visible {
8 | visibility: visible !important;
9 | }
10 |
11 | .invisible {
12 | visibility: hidden !important;
13 | }
14 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/v4-shims.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | */
5 | @import 'variables';
6 | @import 'shims';
7 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/colors/ui/icons/back-color.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/h4.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/v4-shims.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | */
5 | @import '_variables.less';
6 | @import '_shims.less';
7 |
--------------------------------------------------------------------------------
/blog/index.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
--------------------------------------------------------------------------------
/hws/4-17-2023/index.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/documentation.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // rsingleTag matches a string consisting of a single HTML element with no attributes
5 | // and captures the element's name
6 | return ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
7 | } );
8 |
--------------------------------------------------------------------------------
/php2/Blog.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/php2/about.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/php2/node_modules/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 | "use strict";
10 |
11 | // Return jQuery for attributes-only inclusion
12 | return jQuery;
13 | } );
14 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/h1.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/removeformat.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/template.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
Dashboard
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/square-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/square-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/toastr/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
5 | install:
6 | - npm install -g gulp karma-cli
7 | - npm install
8 |
9 | script:
10 | - npm test
11 |
12 | cache:
13 | directories:
14 | - node_modules
15 |
16 | branches:
17 | only:
18 | - develop
19 | - master
20 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/indent/ui/icons/indent.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/indent/ui/icons/outdent.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/src/ui/icons/insert-image.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/traversing/var/siblings.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | return function( n, elem ) {
6 | var matched = [];
7 |
8 | for ( ; n; n = n.nextSibling ) {
9 | if ( n.nodeType === 1 && n !== elem ) {
10 | matched.push( n );
11 | }
12 | }
13 |
14 | return matched;
15 | };
16 |
17 | } );
18 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/houzz.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/houzz.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | "use strict";
8 |
9 | jQuery.expr.pseudos.animated = function( elem ) {
10 | return jQuery.grep( jQuery.timers, function( fn ) {
11 | return elem === fn.elem;
12 | } ).length;
13 | };
14 |
15 | } );
16 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/highlight/ui/sass/trumbowyg.highlight.scss:
--------------------------------------------------------------------------------
1 | .trumbowyg-highlight-form-group {
2 | margin: 15px 10px;
3 |
4 | .trumbowyg-highlight-form-control {
5 | width: 100%;
6 | border: 1px solid #DEDEDE;
7 | font-size: 14px;
8 | padding: 7px;
9 |
10 | &.code {
11 | height: 200px;
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/egg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/egg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/manipulation/var/rtagName.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | // rtagName captures the name from the first start tag in a string of HTML
5 | // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state
6 | // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state
7 | return ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
8 | } );
9 |
--------------------------------------------------------------------------------
/php2/node_modules/toastr/tests/unit/qunit-helper.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Hack to expose spec count from QUnit to Karma
3 | */
4 |
5 | var testCount = 0;
6 | var qunitTest = QUnit.test;
7 | QUnit.test = window.test = function () {
8 | testCount += 1;
9 | qunitTest.apply(this, arguments);
10 | };
11 | QUnit.begin(function (args) {
12 | args.totalTests = testCount;
13 | });
14 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/flipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/flipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/index.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
15 |
19 |
20 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/scss/_variables.scss:
--------------------------------------------------------------------------------
1 | $primary-color: #ff974a;
2 | $primary-color-light: #ffb864;
3 | $primary-color-dark: #b65207;
4 | $secondary-color: #f48d40;
5 | $text-color: #392813;
6 | $grey: #f4f7fa;
7 | $white: #fff;
8 |
9 | $panton: "Panton", sans-serif;
10 | $font: "Open Sans", sans-serif;
11 |
12 | $radius: 6px;
13 |
14 | $transition-duration: 150ms;
15 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/_core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab {
5 | -moz-osx-font-smoothing: grayscale;
6 | -webkit-font-smoothing: antialiased;
7 | display: inline-block;
8 | font-style: normal;
9 | font-variant: normal;
10 | text-rendering: auto;
11 | line-height: 1;
12 | }
13 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/unsplash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/yandex-international.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/less/_core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab {
5 | -moz-osx-font-smoothing: grayscale;
6 | -webkit-font-smoothing: antialiased;
7 | display: inline-block;
8 | font-style: normal;
9 | font-variant: normal;
10 | text-rendering: auto;
11 | line-height: 1;
12 | }
13 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/unsplash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/yandex-international.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/_transitions.scss:
--------------------------------------------------------------------------------
1 | .fade {
2 | @include transition($transition-fade);
3 |
4 | &:not(.show) {
5 | opacity: 0;
6 | }
7 | }
8 |
9 | .collapse {
10 | &:not(.show) {
11 | display: none;
12 | }
13 | }
14 |
15 | .collapsing {
16 | position: relative;
17 | height: 0;
18 | overflow: hidden;
19 | @include transition($transition-collapse);
20 | }
21 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/_transitions.scss:
--------------------------------------------------------------------------------
1 | .fade {
2 | @include transition($transition-fade);
3 |
4 | &:not(.show) {
5 | opacity: 0;
6 | }
7 | }
8 |
9 | .collapse {
10 | &:not(.show) {
11 | display: none;
12 | }
13 | }
14 |
15 | .collapsing {
16 | position: relative;
17 | height: 0;
18 | overflow: hidden;
19 | @include transition($transition-collapse);
20 | }
21 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/black-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/sort-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/sort-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 |
3 | # Rewrite /foo/bar to /foo/bar.php
4 | RewriteRule ^([^.?]+)$ %{REQUEST_URI}.php [L]
5 |
6 | # Return 404 if original request is /foo/bar.php
7 | RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$"
8 | RewriteRule .* - [L,R=404]
9 |
10 | # NOTE! FOR APACHE ON WINDOWS: Add [NC] to RewriteCond like this:
11 | # RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$" [NC]
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/black-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/sort-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/sort-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/bandcamp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/strava.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/bandcamp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/strava.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 |
3 | # Rewrite /foo/bar to /foo/bar.php
4 | RewriteRule ^([^.?]+)$ %{REQUEST_URI}.php [L]
5 |
6 | # Return 404 if original request is /foo/bar.php
7 | RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$"
8 | RewriteRule .* - [L,R=404]
9 |
10 | # NOTE! FOR APACHE ON WINDOWS: Add [NC] to RewriteCond like this:
11 | # RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$" [NC]
12 |
--------------------------------------------------------------------------------
/blog/admin/dashboard.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | = pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME); ?>
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/microsoft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/microsoft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/mixins/_text-hide.scss:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | @mixin text-hide($ignore-warning: false) {
3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4 | font: 0/0 a;
5 | color: transparent;
6 | text-shadow: none;
7 | background-color: transparent;
8 | border: 0;
9 |
10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
11 | }
12 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/vuejs.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/volume-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/mixins/_text-hide.scss:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | @mixin text-hide($ignore-warning: false) {
3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4 | font: 0/0 a;
5 | color: transparent;
6 | text-shadow: none;
7 | background-color: transparent;
8 | border: 0;
9 |
10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
11 | }
12 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/vuejs.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/volume-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/css3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/caret-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/cheese.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/folder.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/css3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/caret-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/cheese.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/folder.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/_animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | animation: fa-spin 2s infinite linear;
6 | }
7 |
8 | .@{fa-css-prefix}-pulse {
9 | animation: fa-spin 1s infinite steps(8);
10 | }
11 |
12 | @keyframes fa-spin {
13 | 0% {
14 | transform: rotate(0deg);
15 | }
16 | 100% {
17 | transform: rotate(360deg);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/less/_animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | animation: fa-spin 2s infinite linear;
6 | }
7 |
8 | .@{fa-css-prefix}-pulse {
9 | animation: fa-spin 1s infinite steps(8);
10 | }
11 |
12 | @keyframes fa-spin {
13 | 0% {
14 | transform: rotate(0deg);
15 | }
16 | 100% {
17 | transform: rotate(360deg);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/scss/main.scss:
--------------------------------------------------------------------------------
1 | @import "normalize";
2 | @import "variables";
3 | @import "font";
4 | @import "base";
5 | @import "buttons";
6 | @import "header";
7 | @import "section";
8 | @import "introduction";
9 | @import "get-started";
10 | @import "languages";
11 | @import "plugins-packages";
12 | @import "donate";
13 | @import "footer";
14 |
15 | @import "highlightjs-github";
16 | @import "documentation";
17 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/think-peaks.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/y-combinator.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/ice-cream.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/think-peaks.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/y-combinator.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/ice-cream.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../selector"
4 | ], function( jQuery ) {
5 |
6 | "use strict";
7 |
8 | jQuery.expr.pseudos.hidden = function( elem ) {
9 | return !jQuery.expr.pseudos.visible( elem );
10 | };
11 | jQuery.expr.pseudos.visible = function( elem ) {
12 | return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
13 | };
14 |
15 | } );
16 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/.gitignore:
--------------------------------------------------------------------------------
1 | # Others
2 | ~$*
3 | /.sass-cache
4 | /uploaded-files
5 | /node_modules
6 | /bower_components
7 | /dist
8 | /src/ui/sass/_sprite*
9 | /plugins/**/ui/sass/_sprite*
10 |
11 | # We use npm: ignore yarn
12 | yarn.lock
13 |
14 | # Windows image file caches
15 | Thumbs.db
16 |
17 | # Folder config file
18 | Desktop.ini
19 |
20 | # Mac crap
21 | .DS_Store
22 |
23 | # IDEA
24 | .idea
25 | /nbproject
26 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/mixins/_badge.scss:
--------------------------------------------------------------------------------
1 | @mixin badge-variant($bg) {
2 | color: color-yiq($bg);
3 | background-color: $bg;
4 |
5 | @at-root a#{&} {
6 | @include hover-focus() {
7 | color: color-yiq($bg);
8 | background-color: darken($bg, 10%);
9 | }
10 |
11 | &:focus,
12 | &.focus {
13 | outline: 0;
14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | animation: fa-spin 2s infinite linear;
6 | }
7 |
8 | .#{$fa-css-prefix}-pulse {
9 | animation: fa-spin 1s infinite steps(8);
10 | }
11 |
12 | @keyframes fa-spin {
13 | 0% {
14 | transform: rotate(0deg);
15 | }
16 |
17 | 100% {
18 | transform: rotate(360deg);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/mix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/mouse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/mixins/_badge.scss:
--------------------------------------------------------------------------------
1 | @mixin badge-variant($bg) {
2 | color: color-yiq($bg);
3 | background-color: $bg;
4 |
5 | @at-root a#{&} {
6 | @include hover-focus() {
7 | color: color-yiq($bg);
8 | background-color: darken($bg, 10%);
9 | }
10 |
11 | &:focus,
12 | &.focus {
13 | outline: 0;
14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | animation: fa-spin 2s infinite linear;
6 | }
7 |
8 | .#{$fa-css-prefix}-pulse {
9 | animation: fa-spin 1s infinite steps(8);
10 | }
11 |
12 | @keyframes fa-spin {
13 | 0% {
14 | transform: rotate(0deg);
15 | }
16 |
17 | 100% {
18 | transform: rotate(360deg);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/mix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/mouse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/less/_list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: (@fa-li-width * 5/4);
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .@{fa-css-prefix}-li {
13 | left: -@fa-li-width;
14 | position: absolute;
15 | text-align: center;
16 | width: @fa-li-width;
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: $fa-li-width * 5/4;
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .#{$fa-css-prefix}-li {
13 | left: -$fa-li-width;
14 | position: absolute;
15 | text-align: center;
16 | width: $fa-li-width;
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/google-drive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/comment-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/less/_list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: (@fa-li-width * 5/4);
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .@{fa-css-prefix}-li {
13 | left: -@fa-li-width;
14 | position: absolute;
15 | text-align: center;
16 | width: @fa-li-width;
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: $fa-li-width * 5/4;
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .#{$fa-css-prefix}-li {
13 | left: -$fa-li-width;
14 | position: absolute;
15 | text-align: center;
16 | width: $fa-li-width;
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/google-drive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/comment-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/sd-card.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/sd-card.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/data/var/acceptData.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | /**
6 | * Determines whether an object can have data
7 | */
8 | return function( owner ) {
9 |
10 | // Accepts only:
11 | // - Node
12 | // - Node.ELEMENT_NODE
13 | // - Node.DOCUMENT_NODE
14 | // - Object
15 | // - Any
16 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17 | };
18 |
19 | } );
20 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/deprecated/ajax-event-alias.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../core",
3 | "../ajax",
4 | "../event"
5 | ], function( jQuery ) {
6 |
7 | "use strict";
8 |
9 | jQuery.each( [
10 | "ajaxStart",
11 | "ajaxStop",
12 | "ajaxComplete",
13 | "ajaxError",
14 | "ajaxSuccess",
15 | "ajaxSend"
16 | ], function( _i, type ) {
17 | jQuery.fn[ type ] = function( fn ) {
18 | return this.on( type, fn );
19 | };
20 | } );
21 |
22 | } );
23 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/uikit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/caret-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/genderless.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/hockey-puck.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/uikit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/caret-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/genderless.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/hockey-puck.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/angular.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/viacoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/adjust.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/caret-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/columns.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/angular.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/viacoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/adjust.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/caret-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/columns.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/demos/js/runExampleCode.js:
--------------------------------------------------------------------------------
1 | (function($) {
2 | 'use strict';
3 |
4 | $('.js-code-to-eval').each(function() {
5 | eval($(this).text()); // jshint ignore:line
6 | $(this).text(
7 | $(this).text()
8 | .replace(/'Client-ID\s[a-z0-9]+'/, '\'Client-ID xxxxxxxxxxxx\'')
9 | .replace(/apiKey:\s+'.*'/, 'apiKey: \'xxxxxxxxxxxx\'')
10 | );
11 | });
12 | })(jQuery);
13 |
--------------------------------------------------------------------------------
/blog/admin/vendor/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, $ignore-warning: false) {
6 | height: 0;
7 | margin: $margin-y 0;
8 | overflow: hidden;
9 | border-top: 1px solid $color;
10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
11 | }
12 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/modx.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/bread-slice.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/caret-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/location-arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/map-marker.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/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, $ignore-warning: false) {
6 | height: 0;
7 | margin: $margin-y 0;
8 | overflow: hidden;
9 | border-top: 1px solid $color;
10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
11 | }
12 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/modx.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/bread-slice.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/caret-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/location-arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/map-marker.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $breakpoint in map-keys($grid-breakpoints) {
4 | @include media-breakpoint-up($breakpoint) {
5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6 |
7 | .float#{$infix}-left { float: left !important; }
8 | .float#{$infix}-right { float: right !important; }
9 | .float#{$infix}-none { float: none !important; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix},
5 | .fas,
6 | .far,
7 | .fal,
8 | .fad,
9 | .fab {
10 | -moz-osx-font-smoothing: grayscale;
11 | -webkit-font-smoothing: antialiased;
12 | display: inline-block;
13 | font-style: normal;
14 | font-variant: normal;
15 | text-rendering: auto;
16 | line-height: 1;
17 | }
18 |
19 | %fa-icon {
20 | @include fa-icon;
21 | }
22 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/npm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @each $breakpoint in map-keys($grid-breakpoints) {
4 | @include media-breakpoint-up($breakpoint) {
5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6 |
7 | .float#{$infix}-left { float: left !important; }
8 | .float#{$infix}-right { float: right !important; }
9 | .float#{$infix}-none { float: none !important; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix},
5 | .fas,
6 | .far,
7 | .fal,
8 | .fad,
9 | .fab {
10 | -moz-osx-font-smoothing: grayscale;
11 | -webkit-font-smoothing: antialiased;
12 | display: inline-block;
13 | font-style: normal;
14 | font-variant: normal;
15 | text-rendering: auto;
16 | line-height: 1;
17 | }
18 |
19 | %fa-icon {
20 | @include fa-icon;
21 | }
22 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/npm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/core/stripAndCollapse.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "../var/rnothtmlwhite"
3 | ], function( rnothtmlwhite ) {
4 | "use strict";
5 |
6 | // Strip and collapse whitespace according to HTML spec
7 | // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
8 | function stripAndCollapse( value ) {
9 | var tokens = value.match( rnothtmlwhite ) || [];
10 | return tokens.join( " " );
11 | }
12 |
13 | return stripAndCollapse;
14 | } );
15 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/deviantart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/facebook-f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/servicestack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/border-all.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/dot-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/minus-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/mobile.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/stop-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/tablet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/deviantart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/facebook-f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/servicestack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/border-all.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/dot-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/minus-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/mobile.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/stop-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/tablet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/node_modules/jquery/src/var/flat.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 |
5 | "use strict";
6 |
7 | // Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only,
8 | // Firefox <= 61 only
9 | // Provide fallback for browsers without Array#flat.
10 | return arr.flat ? function( array ) {
11 | return arr.flat.call( array );
12 | } : function( array ) {
13 | return arr.concat.apply( [], array );
14 | };
15 |
16 | } );
17 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/plugins/lineheight/ui/icons/lineheight.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/dyalog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/paragraph.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/play-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/voicemail.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/dyalog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/paragraph.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/play-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/voicemail.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/docs/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "trumbowyg-github-page",
3 | "private": true,
4 | "author": {
5 | "name": "Alexandre Demode (Alex-D)",
6 | "email": "contact@alex-d.fr",
7 | "url": "https://alex-d.fr"
8 | },
9 | "license": "MIT",
10 | "scripts": {
11 | "dev": "gulp",
12 | "clean": "gulp clean",
13 | "build": "gulp build"
14 | },
15 | "volta": {
16 | "node": "18.12.1",
17 | "npm": "9.3.0"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/adn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/figma.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/hacker-news.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/instalod.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/glass-whiskey.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/adn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/figma.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/hacker-news.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/instalod.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/glass-whiskey.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/plugins/Trumbowyg-main/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig: https://EditorConfig.org
2 | # Notepad++ Plugin: https://github.com/editorconfig/editorconfig-notepad-plus-plus
3 | # Visual Studio Code Plugin: https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
4 |
5 | root = true
6 |
7 | [*.{css,html,js,json,scss,svg}]
8 | charset = utf-8
9 | indent_style = space
10 | indent_size = 4
11 | trim_trailing_whitespace = true
12 |
13 | [*.json]
14 | indent_size = 2
15 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/utilities/_align.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | .align-baseline { vertical-align: baseline !important; } // Browser default
4 | .align-top { vertical-align: top !important; }
5 | .align-middle { vertical-align: middle !important; }
6 | .align-bottom { vertical-align: bottom !important; }
7 | .align-text-bottom { vertical-align: text-bottom !important; }
8 | .align-text-top { vertical-align: text-top !important; }
9 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/dochub.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/firstdraft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/angle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/angle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/step-backward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/step-forward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/sticky-note.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/toggle-on.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/utilities/_align.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | .align-baseline { vertical-align: baseline !important; } // Browser default
4 | .align-top { vertical-align: top !important; }
5 | .align-middle { vertical-align: middle !important; }
6 | .align-bottom { vertical-align: bottom !important; }
7 | .align-text-bottom { vertical-align: text-bottom !important; }
8 | .align-text-top { vertical-align: text-top !important; }
9 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/dochub.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/firstdraft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/angle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/angle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/step-backward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/step-forward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/sticky-note.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/toggle-on.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/angle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/angle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/dice-one.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/sort.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/angle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/angle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/dice-one.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/sort.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/bootstrap/scss/mixins/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @mixin float-left() {
4 | float: left !important;
5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
6 | }
7 | @mixin float-right() {
8 | float: right !important;
9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
10 | }
11 | @mixin float-none() {
12 | float: none !important;
13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
14 | }
15 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/artstation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/twitch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/yahoo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/grip-lines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/table.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/bootstrap/scss/mixins/_float.scss:
--------------------------------------------------------------------------------
1 | // stylelint-disable declaration-no-important
2 |
3 | @mixin float-left() {
4 | float: left !important;
5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
6 | }
7 | @mixin float-right() {
8 | float: right !important;
9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
10 | }
11 | @mixin float-none() {
12 | float: none !important;
13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
14 | }
15 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/artstation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/twitch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/yahoo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/grip-lines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/table.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/regular/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/bolt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/burn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/chalkboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/filter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/blog/admin/vendor/fontawesome-free/svgs/solid/heart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/regular/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/bolt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/burn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/php2/admin/vendor/fontawesome-free/svgs/solid/chalkboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------