From e9680d03c1a97981855fa4690e01be0733d933dc Mon Sep 17 00:00:00 2001 From: M Date: Sun, 22 Nov 2015 13:26:48 -0500 Subject: + Added view for Master MVC --- app/view/master/head.view.php | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/view/master/head.view.php (limited to 'app/view') diff --git a/app/view/master/head.view.php b/app/view/master/head.view.php new file mode 100644 index 0000000..0c9178f --- /dev/null +++ b/app/view/master/head.view.php @@ -0,0 +1,5 @@ + + + + + -- cgit v1.2.3 From 45b1481e4d3a8ce5d92fee955468616588bb51f0 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 22 Nov 2015 16:57:16 -0500 Subject: + Added footer view to Master MVC (for placing JS includes at the bottom of pages) --- app/view/master/foot.view.php | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 app/view/master/foot.view.php (limited to 'app/view') diff --git a/app/view/master/foot.view.php b/app/view/master/foot.view.php new file mode 100644 index 0000000..5c52563 --- /dev/null +++ b/app/view/master/foot.view.php @@ -0,0 +1,2 @@ + + -- cgit v1.2.3 From ff1cc22306565f8c7d2629882a38f1d462694edd Mon Sep 17 00:00:00 2001 From: M Date: Sun, 22 Nov 2015 21:40:35 -0500 Subject: + Adding draft of the sysconf view --- app/view/sysconf/default.view.php | 107 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 app/view/sysconf/default.view.php (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php new file mode 100644 index 0000000..74dfd79 --- /dev/null +++ b/app/view/sysconf/default.view.php @@ -0,0 +1,107 @@ + + + + + + Scrott - System-level configuration missing + + + + + + + + +
+
+

+     +     +     +     +     + +

+ +

Welcome to Scrott!

+
+ +

You're seeing this page because the file "scrott.conf.php" is missing.
Please fill out the form below to create a config automatically!

+

Click the icons above to learn more about core Scrott features and constructs!

+
+ +

This form will initialize Scrott's system-level configuration.
These are things the app needs before it can begin functioning at all!

+
It is presumed that you are the administrator for this Scrott install.
There is a security risk involved with exposing this page to the public!
+ +
+
+ +
+
+
+
+ Database Connection +
+
+ + localhost + +
+
+ + + + + +
+ +
+ +
+
+
+
+
+
+ +
+
+
+
+ + + + + -- cgit v1.2.3 From 7de4383f0d7e5b3db8eb69e34795dec251ae842e Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 17:33:50 -0500 Subject: * Moved sysconf default view modal content out to diffent view file --- app/view/sysconf/default.view.php | 23 +++-------------------- app/view/sysconf/user.modal.view.php | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 20 deletions(-) create mode 100644 app/view/sysconf/user.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 74dfd79..a4dade9 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -19,29 +19,12 @@ - - - +

+     +             diff --git a/app/view/sysconf/user.modal.view.php b/app/view/sysconf/user.modal.view.php new file mode 100644 index 0000000..b3650b0 --- /dev/null +++ b/app/view/sysconf/user.modal.view.php @@ -0,0 +1,30 @@ + -- cgit v1.2.3 From 32569e09783e442415f76e0b54b20f084843b120 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 17:56:48 -0500 Subject: + Created sysconf group modal --- app/view/sysconf/default.view.php | 5 ++--- app/view/sysconf/group.modal.view.php | 31 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 app/view/sysconf/group.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index a4dade9..7febbf6 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -20,13 +20,12 @@ +

    - -     -     +                 diff --git a/app/view/sysconf/group.modal.view.php b/app/view/sysconf/group.modal.view.php new file mode 100644 index 0000000..cd05642 --- /dev/null +++ b/app/view/sysconf/group.modal.view.php @@ -0,0 +1,31 @@ + -- cgit v1.2.3 From b4af0b4594a95365f77575eef288a5d318f5a06c Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 19:16:06 -0500 Subject: + Added sysconf pad modal view --- app/view/sysconf/pad.modal.view.php | 50 +++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 app/view/sysconf/pad.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/pad.modal.view.php b/app/view/sysconf/pad.modal.view.php new file mode 100644 index 0000000..88c62e7 --- /dev/null +++ b/app/view/sysconf/pad.modal.view.php @@ -0,0 +1,50 @@ + -- cgit v1.2.3 From d0ac4b2ef6ac4bb472188a84085ab040e5b2a769 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 20:03:50 -0500 Subject: + Added sysconf stage modal view --- app/view/sysconf/stage.modal.view.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/view/sysconf/stage.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/stage.modal.view.php b/app/view/sysconf/stage.modal.view.php new file mode 100644 index 0000000..4eaab43 --- /dev/null +++ b/app/view/sysconf/stage.modal.view.php @@ -0,0 +1,34 @@ + -- cgit v1.2.3 From fd415e6d1054795f8643e909061f7cd0cd5c5318 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 20:29:37 -0500 Subject: + Added sysconf issue modal view --- app/view/sysconf/issue.modal.view.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/view/sysconf/issue.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/issue.modal.view.php b/app/view/sysconf/issue.modal.view.php new file mode 100644 index 0000000..a77c1e3 --- /dev/null +++ b/app/view/sysconf/issue.modal.view.php @@ -0,0 +1,34 @@ + -- cgit v1.2.3 From bd78037bb26a2c325d4dc25ae4d5bc11738c9838 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 21:39:48 -0500 Subject: + Adding sysconf message modal view --- app/view/sysconf/message.modal.view.php | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app/view/sysconf/message.modal.view.php (limited to 'app/view') diff --git a/app/view/sysconf/message.modal.view.php b/app/view/sysconf/message.modal.view.php new file mode 100644 index 0000000..715bb06 --- /dev/null +++ b/app/view/sysconf/message.modal.view.php @@ -0,0 +1,37 @@ + -- cgit v1.2.3 From b6883568aa378fc27a0d561f31945fc7d44a4df3 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 29 Nov 2015 22:08:59 -0500 Subject: * Updated sysconf default view to include new modal content --- app/view/sysconf/default.view.php | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 7febbf6..83fa145 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -6,30 +6,27 @@ Scrott - System-level configuration missing + + + +

        -     -     -     - +     +     +     +

Welcome to Scrott!

-- cgit v1.2.3 From b0ab1bc56182514d0cb39febf1792f2c63819d49 Mon Sep 17 00:00:00 2001 From: M Date: Wed, 2 Dec 2015 22:43:22 -0500 Subject: * Formatted DB portion of the sysconf page form --- app/view/sysconf/default.view.php | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 83fa145..4266ab8 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -18,6 +18,7 @@ +

@@ -47,23 +48,30 @@
Database Connection +
-
- - localhost - -
+ +
+
+ + +
+
+ + +
+
+ + +
- -
- -
- -
+
+ +
@@ -76,11 +84,5 @@
- -- cgit v1.2.3 From cc6c04725504d7419513c6a023bd51c02a6de8a4 Mon Sep 17 00:00:00 2001 From: M Date: Thu, 3 Dec 2015 21:00:34 -0500 Subject: * Finished form for sysconf default view --- app/view/sysconf/default.view.php | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index 4266ab8..f6b5b23 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -48,7 +48,6 @@
Database Connection -
@@ -73,6 +72,40 @@
+ + Application Installation +
+ + +
Detected from location of files in web document root
+
+ + Settings +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +

-- cgit v1.2.3 From dfd10529bb00ed344cb118219abab98cb1769760 Mon Sep 17 00:00:00 2001 From: M Date: Thu, 3 Dec 2015 21:12:02 -0500 Subject: * Fixed the sources in the master head and foot views (wasn't accounting for app-root) --- app/view/master/foot.view.php | 4 ++-- app/view/master/head.view.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'app/view') diff --git a/app/view/master/foot.view.php b/app/view/master/foot.view.php index 5c52563..c295455 100644 --- a/app/view/master/foot.view.php +++ b/app/view/master/foot.view.php @@ -1,2 +1,2 @@ - - + + diff --git a/app/view/master/head.view.php b/app/view/master/head.view.php index 0c9178f..54294b8 100644 --- a/app/view/master/head.view.php +++ b/app/view/master/head.view.php @@ -2,4 +2,4 @@ - + -- cgit v1.2.3 From 5a05468fe2d78641d3adb0ba5b83bf526f4f06de Mon Sep 17 00:00:00 2001 From: M Date: Sat, 5 Dec 2015 22:53:34 -0500 Subject: + Added framework function for getting current app path * Changed sysconf view to use new function ($mod->ar()/sysconf -> $mod->ap) --- app/view/sysconf/default.view.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/view') diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index f6b5b23..b6b85ac 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -46,7 +46,8 @@
-
+ + Database Connection
-- cgit v1.2.3 From 75cb46f665eeec0096dd464fe49444c2c3af5eb1 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 6 Dec 2015 15:02:15 -0500 Subject: + Adding master page modal for displaying page errors/warnings/and notices (shell only, content coming soon) --- app/view/master/foot.view.php | 8 ++++++++ app/view/master/topp.view.php | 17 +++++++++++++++++ app/view/sysconf/default.view.php | 2 ++ 3 files changed, 27 insertions(+) create mode 100644 app/view/master/topp.view.php (limited to 'app/view') diff --git a/app/view/master/foot.view.php b/app/view/master/foot.view.php index c295455..6220f89 100644 --- a/app/view/master/foot.view.php +++ b/app/view/master/foot.view.php @@ -1,2 +1,10 @@ + +isError() || $mod->isWarning() || $mod->isNotice()) { ?> + + diff --git a/app/view/master/topp.view.php b/app/view/master/topp.view.php new file mode 100644 index 0000000..eef344e --- /dev/null +++ b/app/view/master/topp.view.php @@ -0,0 +1,17 @@ +isError() || $mod->isWarning() || $mod->isNotice()) { ?> + + diff --git a/app/view/sysconf/default.view.php b/app/view/sysconf/default.view.php index b6b85ac..1ecedd8 100644 --- a/app/view/sysconf/default.view.php +++ b/app/view/sysconf/default.view.php @@ -12,6 +12,8 @@ + + -- cgit v1.2.3 From f83a90323bb359f995e7359a917eb9470a5e40e0 Mon Sep 17 00:00:00 2001 From: M Date: Sun, 6 Dec 2015 20:51:30 -0500 Subject: + Implemented the "noticeModal" -- an object in the master MVC topp view for displaying error / warning / and notice messages + Added two helper functions to Master MVC model for retruning values to the noticeModal --- app/view/master/topp.view.php | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) (limited to 'app/view') diff --git a/app/view/master/topp.view.php b/app/view/master/topp.view.php index eef344e..fe430ff 100644 --- a/app/view/master/topp.view.php +++ b/app/view/master/topp.view.php @@ -1,16 +1,43 @@ isError() || $mod->isWarning() || $mod->isNotice()) { ?>