31 |
32 |
33 |
Are you sure that you want to delete
?
34 | Once you delete a file it can not be undo!
35 |
40 |
41 |
42 |
47 |
48 |
49 |
50 |
was deleted successfully!
51 |
Go Back
52 |
53 |
54 |
--------------------------------------------------------------------------------
/includes/css/alertify.core.css:
--------------------------------------------------------------------------------
1 | .alertify,
2 | .alertify-show,
3 | .alertify-log {
4 | -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
5 | -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
6 | -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
7 | -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
8 | transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
9 | }
10 | .alertify-hide {
11 | -webkit-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
12 | -moz-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
13 | -ms-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
14 | -o-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
15 | transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
16 | }
17 | .alertify-log-hide {
18 | -webkit-transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
19 | -moz-transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
20 | -ms-transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
21 | -o-transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
22 | transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
23 | }
24 | .alertify-cover {
25 | position: fixed; z-index: 99999;
26 | top: 0; right: 0; bottom: 0; left: 0;
27 | background-color:white;
28 | filter:alpha(opacity=0);
29 | opacity:0;
30 | }
31 | .alertify-cover-hidden {
32 | display: none;
33 | }
34 | .alertify {
35 | position: fixed; z-index: 99999;
36 | top: 50px; left: 50%;
37 | width: 550px;
38 | margin-left: -275px;
39 | opacity: 1;
40 | }
41 | .alertify-hidden {
42 | -webkit-transform: translate(0,-150px);
43 | -moz-transform: translate(0,-150px);
44 | -ms-transform: translate(0,-150px);
45 | -o-transform: translate(0,-150px);
46 | transform: translate(0,-150px);
47 | opacity: 0;
48 | display: none;
49 | }
50 | /* overwrite display: none; for everything except IE6-8 */
51 | :root *> .alertify-hidden {
52 | display: block;
53 | visibility: hidden;
54 | }
55 | .alertify-logs {
56 | position: fixed;
57 | z-index: 5000;
58 | bottom: 10px;
59 | right: 10px;
60 | width: 300px;
61 | }
62 | .alertify-logs-hidden {
63 | display: none;
64 | }
65 | .alertify-log {
66 | display: block;
67 | margin-top: 10px;
68 | position: relative;
69 | right: -300px;
70 | opacity: 0;
71 | }
72 | .alertify-log-show {
73 | right: 0;
74 | opacity: 1;
75 | }
76 | .alertify-log-hide {
77 | -webkit-transform: translate(300px, 0);
78 | -moz-transform: translate(300px, 0);
79 | -ms-transform: translate(300px, 0);
80 | -o-transform: translate(300px, 0);
81 | transform: translate(300px, 0);
82 | opacity: 0;
83 | }
84 | .alertify-dialog {
85 | padding: 25px;
86 | }
87 | .alertify-resetFocus {
88 | border: 0;
89 | clip: rect(0 0 0 0);
90 | height: 1px;
91 | margin: -1px;
92 | overflow: hidden;
93 | padding: 0;
94 | position: absolute;
95 | width: 1px;
96 | }
97 | .alertify-inner {
98 | text-align: center;
99 | }
100 | .alertify-text {
101 | margin-bottom: 15px;
102 | width: 100%;
103 | -webkit-box-sizing: border-box;
104 | -moz-box-sizing: border-box;
105 | box-sizing: border-box;
106 | font-size: 100%;
107 | }
108 | .alertify-buttons {
109 | }
110 | .alertify-button,
111 | .alertify-button:hover,
112 | .alertify-button:active,
113 | .alertify-button:visited {
114 | background: none;
115 | text-decoration: none;
116 | border: none;
117 | /* line-height and font-size for input button */
118 | line-height: 1.5;
119 | font-size: 100%;
120 | display: inline-block;
121 | cursor: pointer;
122 | margin-left: 5px;
123 | }
124 |
125 | @media only screen and (max-width: 680px) {
126 | .alertify,
127 | .alertify-logs {
128 | width: 90%;
129 | -webkit-box-sizing: border-box;
130 | -moz-box-sizing: border-box;
131 | box-sizing: border-box;
132 | }
133 | .alertify {
134 | left: 5%;
135 | margin: 0;
136 | }
137 | }
138 |
--------------------------------------------------------------------------------
/includes/css/alertify.default.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Default Look and Feel
3 | */
4 | .alertify,
5 | .alertify-log {
6 | font-family: sans-serif;
7 | }
8 | .alertify {
9 | background: #FFF;
10 | border: 10px solid #333; /* browsers that don't support rgba */
11 | border: 10px solid rgba(0,0,0,.7);
12 | border-radius: 8px;
13 | box-shadow: 0 3px 3px rgba(0,0,0,.3);
14 | -webkit-background-clip: padding; /* Safari 4? Chrome 6? */
15 | -moz-background-clip: padding; /* Firefox 3.6 */
16 | background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
17 | }
18 | .alertify-text {
19 | border: 1px solid #CCC;
20 | padding: 10px;
21 | border-radius: 4px;
22 | }
23 | .alertify-button {
24 | border-radius: 4px;
25 | color: #FFF;
26 | font-weight: bold;
27 | padding: 6px 15px;
28 | text-decoration: none;
29 | text-shadow: 1px 1px 0 rgba(0,0,0,.5);
30 | box-shadow: inset 0 1px 0 0 rgba(255,255,255,.5);
31 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
32 | background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
33 | background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
34 | background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
35 | background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
36 | }
37 | .alertify-button:hover,
38 | .alertify-button:focus {
39 | outline: none;
40 | background-image: -webkit-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
41 | background-image: -moz-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
42 | background-image: -ms-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
43 | background-image: -o-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
44 | background-image: linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
45 | }
46 | .alertify-button:focus {
47 | box-shadow: 0 0 15px #2B72D5;
48 | }
49 | .alertify-button:active {
50 | position: relative;
51 | box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
52 | }
53 | .alertify-button-cancel,
54 | .alertify-button-cancel:hover,
55 | .alertify-button-cancel:focus {
56 | background-color: #FE1A00;
57 | border: 1px solid #D83526;
58 | }
59 | .alertify-button-ok,
60 | .alertify-button-ok:hover,
61 | .alertify-button-ok:focus {
62 | background-color: #5CB811;
63 | border: 1px solid #3B7808;
64 | }
65 |
66 | .alertify-log {
67 | background: #1F1F1F;
68 | background: rgba(0,0,0,.9);
69 | padding: 15px;
70 | border-radius: 4px;
71 | color: #FFF;
72 | text-shadow: -1px -1px 0 rgba(0,0,0,.5);
73 | }
74 | .alertify-log-error {
75 | background: #FE1A00;
76 | background: rgba(254,26,0,.9);
77 | }
78 | .alertify-log-success {
79 | background: #5CB811;
80 | background: rgba(92,184,17,.9);
81 | }
--------------------------------------------------------------------------------
/includes/database/internal/general.psdb:
--------------------------------------------------------------------------------
1 | {"theme":"playscript","fontsize":"16px","language":"php"}
--------------------------------------------------------------------------------
/includes/db/DONT_DELETE_THIS_FOLDER:
--------------------------------------------------------------------------------
1 | DONT_DELETE_THIS_FOLDER
2 |
--------------------------------------------------------------------------------
/includes/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/includes/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/includes/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/includes/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/includes/image/_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/_button.png
--------------------------------------------------------------------------------
/includes/image/_ouputconsoleheader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/_ouputconsoleheader.png
--------------------------------------------------------------------------------
/includes/image/ballon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/ballon.jpg
--------------------------------------------------------------------------------
/includes/image/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/button.png
--------------------------------------------------------------------------------
/includes/image/buttonhv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/buttonhv.png
--------------------------------------------------------------------------------
/includes/image/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/loader.gif
--------------------------------------------------------------------------------
/includes/image/ouputconsoleheader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/ouputconsoleheader.png
--------------------------------------------------------------------------------
/includes/image/playscript-theme-bg1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/playscript-theme-bg1.jpg
--------------------------------------------------------------------------------
/includes/image/playscript-theme-bg2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/playscript-theme-bg2.jpg
--------------------------------------------------------------------------------
/includes/image/topMenu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakibtg/playscript/8b8fabf4c3a2389b945487b5988e868e6ab47023/includes/image/topMenu.png
--------------------------------------------------------------------------------
/includes/js/alertify.min.js:
--------------------------------------------------------------------------------
1 | /*! alertify - v0.3.11 - 2013-10-08 */
2 | !function(a,b){"use strict";var c,d=a.document;c=function(){var c,e,f,g,h,i,j,k,l,m,n,o,p,q={},r={},s=!1,t={ENTER:13,ESC:27,SPACE:32},u=[];return r={buttons:{holder:'
8 |
9 |
10 | Thankyou, you are now ready to :)
Continue >
11 |
12 |
13 |
14 |
15 |
18 |
19 |
20 |
21 |
22 |
23 | is a browser based tool only used in offline workspaces to instantly code in PHP, PHP based Databases, JavaScript, JavaScript Libraries and also HTML, CSS
24 | NOTE that is still not compatible or secure to use in production servers.
25 |
26 |
27 |
28 |
29 |
30 |
31 | To add an extra layer of your local-development security it will ask for this Secret Key
32 | You can hard-code the Secret Key later if required.
33 |
34 |
39 | all fields are required.
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/includes/php/topMenu.php:
--------------------------------------------------------------------------------
1 |
6 | * ALSO SPECIAL THANKS FOR SEEING THE SOURCE CODE
7 | * I AM SORRY FOR MY BAD CODING STYLE :(
8 | * YOUR CONTRIBUTION WILL BE A GREAT GIFT FOR PLAYSCRIPT
9 | * LICENSE: OPEN-SOURCE
10 | * PROJECT HOMEPAGE: http://playscript.prijm.com
11 | * YOU CAN RICH ME(INITIAL DEVELOPER) AT http://twitter.com/rakibtg FEEL FREE TO TWEET OR MESSAGE YOUR QUERY
12 | * PLEASE SHARE