├── .gitkeep ├── css ├── .gitkeep ├── customStyle.css ├── bootstrap-theme.min.css └── bootstrap-theme.min.css.map ├── js ├── .gitkeep ├── datatables.net │ ├── .gitkeep │ ├── js │ │ └── .gitkeep │ ├── bower.json │ ├── .bower.json │ ├── License.txt │ └── Readme.md ├── datatables.net-bs │ ├── .gitkeep │ ├── css │ │ ├── .gitkeep │ │ ├── dataTables.bootstrap.min.css │ │ └── dataTables.bootstrap.css │ ├── js │ │ ├── .gitkeep │ │ ├── dataTables.bootstrap.min.js │ │ └── dataTables.bootstrap.js │ ├── bower.json │ ├── License.txt │ ├── .bower.json │ └── Readme.md ├── myJs.js └── npm.js ├── fonts ├── .gitkeep ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── include ├── .gitkeep ├── autoloader.php ├── db.php ├── bill.php └── function.php ├── photo ├── .gitkeep ├── fk.jpg ├── cap.png ├── cream.png ├── login.jpg ├── lotion.png ├── syrunj.png ├── syrup.png ├── tablet.png ├── injection.jpg ├── file000477760838.jpg ├── file000541344089.jpg └── Android-Wallpapers-11-2048-x-1152.jpg ├── font-awesome ├── .gitkeep ├── css │ └── .gitkeep ├── fonts │ ├── .gitkeep │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── less │ ├── .gitkeep │ ├── fixed-width.less │ ├── screen-reader.less │ ├── larger.less │ ├── list.less │ ├── core.less │ ├── stacked.less │ ├── font-awesome.less │ ├── bordered-pulled.less │ ├── rotated-flipped.less │ ├── path.less │ ├── animated.less │ ├── mixins.less │ └── variables.less ├── scss │ ├── .gitkeep │ ├── _fixed-width.scss │ ├── _screen-reader.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _core.scss │ ├── font-awesome.scss │ ├── _stacked.scss │ ├── _bordered-pulled.scss │ ├── _rotated-flipped.scss │ ├── _path.scss │ ├── _animated.scss │ └── _mixins.scss └── HELP-US-OUT.txt ├── htaccess ├── logout.php ├── clear.php ├── assets ├── autoloader.php ├── db.php └── bill.php ├── uploadImg.php ├── .gitignore ├── delete.php ├── called.php ├── test.php ├── login.php ├── billout.php ├── sitesetting.php ├── profile.php ├── accountSetting.php ├── README.md ├── reports.php ├── manageCat.php ├── index.php ├── addnew.php ├── inventeries.php ├── billing.php └── store.sql /.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /css/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /include/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /photo/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font-awesome/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font-awesome/css/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font-awesome/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font-awesome/less/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font-awesome/scss/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/datatables.net/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/datatables.net-bs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/datatables.net-bs/css/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/datatables.net-bs/js/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/datatables.net/js/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /photo/fk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/fk.jpg -------------------------------------------------------------------------------- /photo/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/cap.png -------------------------------------------------------------------------------- /photo/cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/cream.png -------------------------------------------------------------------------------- /photo/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/login.jpg -------------------------------------------------------------------------------- /photo/lotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/lotion.png -------------------------------------------------------------------------------- /photo/syrunj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/syrunj.png -------------------------------------------------------------------------------- /photo/syrup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/syrup.png -------------------------------------------------------------------------------- /photo/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/tablet.png -------------------------------------------------------------------------------- /js/myJs.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() 2 | { 3 | $('[data-toggle="tooltip"]').tooltip(); 4 | 5 | }); -------------------------------------------------------------------------------- /photo/injection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/injection.jpg -------------------------------------------------------------------------------- /htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase 3 | RewriteRule ^inventeries/([0-9]+) inventeries.php?catId=$1 [NC,L] 4 | -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /photo/file000477760838.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/file000477760838.jpg -------------------------------------------------------------------------------- /photo/file000541344089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/file000541344089.jpg -------------------------------------------------------------------------------- /clear.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /photo/Android-Wallpapers-11-2048-x-1152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drahulsingh/Medstore-Management-System/HEAD/photo/Android-Wallpapers-11-2048-x-1152.jpg -------------------------------------------------------------------------------- /font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/autoloader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /include/autoloader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/db.php: -------------------------------------------------------------------------------- 1 | query("select * from users where id ='$_SESSION[userId]'"); 6 | $user = $array->fetch_assoc(); 7 | 8 | $base_path = "http://localhost/dev.test/store"; 9 | ?> -------------------------------------------------------------------------------- /include/db.php: -------------------------------------------------------------------------------- 1 | query("select * from users where id ='$_SESSION[userId]'"); 6 | $user = $array->fetch_assoc(); 7 | 8 | $base_path = "http://localhost/dev.test/medical"; 9 | ?> -------------------------------------------------------------------------------- /font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /uploadImg.php: -------------------------------------------------------------------------------- 1 | "; 9 | 10 | ?> -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # CakePHP 3 2 | 3 | /vendor/* 4 | /config/app.php 5 | 6 | /tmp/cache/models/* 7 | !/tmp/cache/models/empty 8 | /tmp/cache/persistent/* 9 | !/tmp/cache/persistent/empty 10 | /tmp/cache/views/* 11 | !/tmp/cache/views/empty 12 | /tmp/sessions/* 13 | !/tmp/sessions/empty 14 | /tmp/tests/* 15 | !/tmp/tests/empty 16 | 17 | /logs/* 18 | !/logs/empty 19 | 20 | # CakePHP 2 21 | 22 | /app/tmp/* 23 | /app/Config/core.php 24 | /app/Config/database.php 25 | /vendors/* 26 | -------------------------------------------------------------------------------- /font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /delete.php: -------------------------------------------------------------------------------- 1 | query("delete from categories where id = '$_GET[category]'")) 7 | { 8 | header("location:manageCat.php"); 9 | } 10 | else 11 | echo "error is:".$con->error; 12 | } 13 | if (isset($_GET['item'])) 14 | { 15 | if ($con->query("delete from inventeries where id = '$_GET[item]'")) 16 | { $url = "location:inventeries.php?".$_GET['url']; 17 | header($url); 18 | } 19 | else 20 | echo "error is:".$con->error; 21 | } 22 | 23 | ?> -------------------------------------------------------------------------------- /font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /assets/bill.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 |
11 | 12 | selected 13 | '> 14 |
-------------------------------------------------------------------------------- /include/bill.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 |
11 | 12 | selected 13 | '> 14 |
-------------------------------------------------------------------------------- /font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /js/datatables.net/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables.net", 3 | "description": "DataTables for jQuery ", 4 | "main": [ 5 | "js/jquery.dataTables.js" 6 | ], 7 | "keywords": [ 8 | "filter", 9 | "sort", 10 | "DataTables", 11 | "jQuery", 12 | "table", 13 | "DataTables" 14 | ], 15 | "dependencies": { 16 | "jquery": ">=1.7" 17 | }, 18 | "moduleType": [ 19 | "globals", 20 | "amd", 21 | "node" 22 | ], 23 | "ignore": [ 24 | "composer.json", 25 | "datatables.json", 26 | "package.json" 27 | ], 28 | "authors": [ 29 | { 30 | "name": "SpryMedia Ltd", 31 | "homepage": "https://datatables.net" 32 | } 33 | ], 34 | "homepage": "https://datatables.net", 35 | "license": "MIT" 36 | } -------------------------------------------------------------------------------- /font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /js/datatables.net-bs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables.net-bs", 3 | "description": "DataTables for jQuery with styling for [Bootstrap](http://getbootstrap.com/)", 4 | "main": [ 5 | "js/dataTables.bootstrap.js", 6 | "css/dataTables.bootstrap.css" 7 | ], 8 | "keywords": [ 9 | "filter", 10 | "sort", 11 | "DataTables", 12 | "jQuery", 13 | "table", 14 | "Bootstrap" 15 | ], 16 | "dependencies": { 17 | "jquery": ">=1.7", 18 | "datatables.net": ">=1.10.9" 19 | }, 20 | "moduleType": [ 21 | "globals", 22 | "amd", 23 | "node" 24 | ], 25 | "ignore": [ 26 | "composer.json", 27 | "datatables.json", 28 | "package.json" 29 | ], 30 | "authors": [ 31 | { 32 | "name": "SpryMedia Ltd", 33 | "homepage": "https://datatables.net" 34 | } 35 | ], 36 | "homepage": "https://datatables.net", 37 | "license": "MIT" 38 | } -------------------------------------------------------------------------------- /called.php: -------------------------------------------------------------------------------- 1 | query("select * from inventeries where id = '$id'"); 11 | $row = $array->fetch_assoc(); 12 | $name = $row['name']; 13 | $price = $row['price']; 14 | $qty = '1'; 15 | $item = array( 16 | 'id' => $id, 17 | 'name' => $name, 18 | 'price' => $price, 19 | 'qty' => $qty 20 | ); 21 | 22 | array_push($_SESSION['bill'],$item); 23 | } 24 | } 25 | if (isset($_GET['remove'])) 26 | { 27 | $id = $_GET['remove']; 28 | foreach ($_SESSION['bill'] as $key => $value) 29 | { 30 | if($_SESSION['bill'][$key]['id'] == $id){ 31 | unset($_SESSION['bill'][$key]); 32 | break; 33 | } 34 | } 35 | header("location:billing.php"); 36 | } 37 | echo $_SESSION['bill'][2]['id']; 38 | echo "
";
39 | print_r($_SESSION['bill']);
40 |  ?>


--------------------------------------------------------------------------------
/test.php:
--------------------------------------------------------------------------------
 1 | 
 9 | 
10 | 
11 | 
12 | 
13 | 
14 | 
15 | 
16 |   <?php echo siteTitle(); ?>
17 |   
18 | 
19 | 
20 | 
21 |   
25 | 
26 | 
27 | 
28 | 
29 | 	
30 | 
31 | 
32 | 


--------------------------------------------------------------------------------
/include/function.php:
--------------------------------------------------------------------------------
 1 | query("select * from site where id='1'");
 8 | 	$row = $array->fetch_assoc();
 9 | 	return $row['title'];
10 | }
11 | function siteName()
12 | {	
13 | 	global $con;
14 | 	
15 | 	$array = $con->query("select * from site where id='1'");
16 | 	$row = $array->fetch_assoc();
17 | 	return $row['name'];
18 | }
19 | function adminName()
20 | {	
21 | 	global $con;
22 | 	
23 | 	$array = $con->query("select * from users where id='$_SESSION[userId]'");
24 | 	$row = $array->fetch_assoc();
25 | 	return $row['name'];
26 | }
27 | function getAdminName($id)
28 | {	
29 | 	global $con;
30 | 	
31 | 	$array = $con->query("select * from users where id='$id'");
32 | 	$row = $array->fetch_assoc();
33 | 	return $row['name'];
34 | }
35 | function getAllCat()
36 | {	
37 | 	global $con;
38 | 	
39 | 	$array = $con->query("select * from categories");
40 | 	while($row = $array->fetch_assoc())
41 | 	{
42 | 		echo "";
43 | 	}
44 | 	
45 | }
46 | 
47 |  ?>


--------------------------------------------------------------------------------
/js/datatables.net/.bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "datatables.net",
 3 |   "description": "DataTables for jQuery ",
 4 |   "main": [
 5 |     "js/jquery.dataTables.js"
 6 |   ],
 7 |   "keywords": [
 8 |     "filter",
 9 |     "sort",
10 |     "DataTables",
11 |     "jQuery",
12 |     "table",
13 |     "DataTables"
14 |   ],
15 |   "dependencies": {
16 |     "jquery": ">=1.7"
17 |   },
18 |   "moduleType": [
19 |     "globals",
20 |     "amd",
21 |     "node"
22 |   ],
23 |   "ignore": [
24 |     "composer.json",
25 |     "datatables.json",
26 |     "package.json"
27 |   ],
28 |   "authors": [
29 |     {
30 |       "name": "SpryMedia Ltd",
31 |       "homepage": "https://datatables.net"
32 |     }
33 |   ],
34 |   "homepage": "https://datatables.net",
35 |   "license": "MIT",
36 |   "version": "1.10.15",
37 |   "_release": "1.10.15",
38 |   "_resolution": {
39 |     "type": "version",
40 |     "tag": "1.10.15",
41 |     "commit": "251688c9524041e913650771c5cfc3bc51ce8fdc"
42 |   },
43 |   "_source": "https://github.com/DataTables/Dist-DataTables.git",
44 |   "_target": "^1.10.15",
45 |   "_originalSource": "datatables.net",
46 |   "_direct": true
47 | }


--------------------------------------------------------------------------------
/js/datatables.net/License.txt:
--------------------------------------------------------------------------------
 1 | Copyright SpryMedia Limited and other contributors
 2 | http://datatables.net
 3 | 
 4 | Permission is hereby granted, free of charge, to any person obtaining a copy
 5 | of this software and associated documentation files (the "Software"), to deal
 6 | in the Software without restriction, including without limitation the rights
 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 8 | copies of the Software, and to permit persons to whom the Software is
 9 | furnished to do so, subject to the following conditions:
10 | 
11 | The above copyright notice and this permission notice shall be included in
12 | all copies or substantial portions of the Software.
13 | 
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 | THE SOFTWARE.


--------------------------------------------------------------------------------
/js/datatables.net-bs/License.txt:
--------------------------------------------------------------------------------
 1 | Copyright SpryMedia Limited and other contributors
 2 | http://datatables.net
 3 | 
 4 | Permission is hereby granted, free of charge, to any person obtaining a copy
 5 | of this software and associated documentation files (the "Software"), to deal
 6 | in the Software without restriction, including without limitation the rights
 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 8 | copies of the Software, and to permit persons to whom the Software is
 9 | furnished to do so, subject to the following conditions:
10 | 
11 | The above copyright notice and this permission notice shall be included in
12 | all copies or substantial portions of the Software.
13 | 
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 | THE SOFTWARE.


--------------------------------------------------------------------------------
/js/datatables.net-bs/.bower.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   "name": "datatables.net-bs",
 3 |   "description": "DataTables for jQuery with styling for [Bootstrap](http://getbootstrap.com/)",
 4 |   "main": [
 5 |     "js/dataTables.bootstrap.js",
 6 |     "css/dataTables.bootstrap.css"
 7 |   ],
 8 |   "keywords": [
 9 |     "filter",
10 |     "sort",
11 |     "DataTables",
12 |     "jQuery",
13 |     "table",
14 |     "Bootstrap"
15 |   ],
16 |   "dependencies": {
17 |     "jquery": ">=1.7",
18 |     "datatables.net": ">=1.10.9"
19 |   },
20 |   "moduleType": [
21 |     "globals",
22 |     "amd",
23 |     "node"
24 |   ],
25 |   "ignore": [
26 |     "composer.json",
27 |     "datatables.json",
28 |     "package.json"
29 |   ],
30 |   "authors": [
31 |     {
32 |       "name": "SpryMedia Ltd",
33 |       "homepage": "https://datatables.net"
34 |     }
35 |   ],
36 |   "homepage": "https://datatables.net",
37 |   "license": "MIT",
38 |   "version": "2.1.1",
39 |   "_release": "2.1.1",
40 |   "_resolution": {
41 |     "type": "version",
42 |     "tag": "2.1.1",
43 |     "commit": "c9aedb3c531795574d69203688888a6c16e02265"
44 |   },
45 |   "_source": "https://github.com/DataTables/Dist-DataTables-Bootstrap.git",
46 |   "_target": "^2.1.1",
47 |   "_originalSource": "datatables.net-bs",
48 |   "_direct": true
49 | }


--------------------------------------------------------------------------------
/font-awesome/less/mixins.less:
--------------------------------------------------------------------------------
 1 | // Mixins
 2 | // --------------------------
 3 | 
 4 | .fa-icon() {
 5 |   display: inline-block;
 6 |   font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
 7 |   font-size: inherit; // can't have font-size inherit on line above, so need to override
 8 |   text-rendering: auto; // optimizelegibility throws things off #1094
 9 |   -webkit-font-smoothing: antialiased;
10 |   -moz-osx-font-smoothing: grayscale;
11 | 
12 | }
13 | 
14 | .fa-icon-rotate(@degrees, @rotation) {
15 |   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
16 |   -webkit-transform: rotate(@degrees);
17 |       -ms-transform: rotate(@degrees);
18 |           transform: rotate(@degrees);
19 | }
20 | 
21 | .fa-icon-flip(@horiz, @vert, @rotation) {
22 |   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
23 |   -webkit-transform: scale(@horiz, @vert);
24 |       -ms-transform: scale(@horiz, @vert);
25 |           transform: scale(@horiz, @vert);
26 | }
27 | 
28 | 
29 | // Only display content to screen readers. A la Bootstrap 4.
30 | //
31 | // See: http://a11yproject.com/posts/how-to-hide-content/
32 | 
33 | .sr-only() {
34 |   position: absolute;
35 |   width: 1px;
36 |   height: 1px;
37 |   padding: 0;
38 |   margin: -1px;
39 |   overflow: hidden;
40 |   clip: rect(0,0,0,0);
41 |   border: 0;
42 | }
43 | 
44 | // Use in conjunction with .sr-only to only display content when it's focused.
45 | //
46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 | //
48 | // Credit: HTML5 Boilerplate
49 | 
50 | .sr-only-focusable() {
51 |   &:active,
52 |   &:focus {
53 |     position: static;
54 |     width: auto;
55 |     height: auto;
56 |     margin: 0;
57 |     overflow: visible;
58 |     clip: auto;
59 |   }
60 | }
61 | 


--------------------------------------------------------------------------------
/font-awesome/scss/_mixins.scss:
--------------------------------------------------------------------------------
 1 | // Mixins
 2 | // --------------------------
 3 | 
 4 | @mixin fa-icon() {
 5 |   display: inline-block;
 6 |   font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
 7 |   font-size: inherit; // can't have font-size inherit on line above, so need to override
 8 |   text-rendering: auto; // optimizelegibility throws things off #1094
 9 |   -webkit-font-smoothing: antialiased;
10 |   -moz-osx-font-smoothing: grayscale;
11 | 
12 | }
13 | 
14 | @mixin fa-icon-rotate($degrees, $rotation) {
15 |   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
16 |   -webkit-transform: rotate($degrees);
17 |       -ms-transform: rotate($degrees);
18 |           transform: rotate($degrees);
19 | }
20 | 
21 | @mixin fa-icon-flip($horiz, $vert, $rotation) {
22 |   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
23 |   -webkit-transform: scale($horiz, $vert);
24 |       -ms-transform: scale($horiz, $vert);
25 |           transform: scale($horiz, $vert);
26 | }
27 | 
28 | 
29 | // Only display content to screen readers. A la Bootstrap 4.
30 | //
31 | // See: http://a11yproject.com/posts/how-to-hide-content/
32 | 
33 | @mixin sr-only {
34 |   position: absolute;
35 |   width: 1px;
36 |   height: 1px;
37 |   padding: 0;
38 |   margin: -1px;
39 |   overflow: hidden;
40 |   clip: rect(0,0,0,0);
41 |   border: 0;
42 | }
43 | 
44 | // Use in conjunction with .sr-only to only display content when it's focused.
45 | //
46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 | //
48 | // Credit: HTML5 Boilerplate
49 | 
50 | @mixin sr-only-focusable {
51 |   &:active,
52 |   &:focus {
53 |     position: static;
54 |     width: auto;
55 |     height: auto;
56 |     margin: 0;
57 |     overflow: visible;
58 |     clip: auto;
59 |   }
60 | }
61 | 


--------------------------------------------------------------------------------
/js/datatables.net-bs/js/dataTables.bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 |  DataTables Bootstrap 3 integration
3 |  ©2011-2015 SpryMedia Ltd - datatables.net/license
4 | */
5 | (function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return b(a,window,document)}):"object"===typeof exports?module.exports=function(a,d){a||(a=window);if(!d||!d.fn.dataTable)d=require("datatables.net")(a,d).$;return b(d,a,a.document)}:b(jQuery,window,document)})(function(b,a,d,m){var f=b.fn.dataTable;b.extend(!0,f.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-5'i><'col-sm-7'p>>",renderer:"bootstrap"});b.extend(f.ext.classes,
6 | {sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm",sProcessing:"dataTables_processing panel panel-default"});f.ext.renderer.pageButton.bootstrap=function(a,h,r,s,j,n){var o=new f.Api(a),t=a.oClasses,k=a.oLanguage.oPaginate,u=a.oLanguage.oAria.paginate||{},e,g,p=0,q=function(d,f){var l,h,i,c,m=function(a){a.preventDefault();!b(a.currentTarget).hasClass("disabled")&&o.page()!=a.data.action&&o.page(a.data.action).draw("page")};
7 | l=0;for(h=f.length;l",{"class":t.sPageButton+" "+g,id:0===r&&"string"===typeof c?a.sTableId+"_"+c:null}).append(b("",{href:"#",
8 | "aria-controls":a.sTableId,"aria-label":u[c],"data-dt-idx":p,tabindex:a.iTabIndex}).html(e)).appendTo(d),a.oApi._fnBindAction(i,{action:c},m),p++)}},i;try{i=b(h).find(d.activeElement).data("dt-idx")}catch(v){}q(b(h).empty().html('