-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_todo.php
More file actions
executable file
·231 lines (183 loc) · 6.78 KB
/
Copy path_todo.php
File metadata and controls
executable file
·231 lines (183 loc) · 6.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php //aboutus.php
/**
* todo.php - generic static page to track my work load
*
*
* @package ma-v1605-22
* @author monkeework <monkeework@gmail.com>
* @version 3.02 2011/05/18
* @link http://www.monkeework.com/
* @license http://www.apche.org/licenses/LICENSE-2.0
* @see config_inc.php
* @todo none
*/
require './_inc/config_inc.php'; #provides configuration, pathing, error handling, db credentials
$config->titleTag = "This is the about Us page, silly!"; #Fills <title> tag. If left empty will fallback to $config->titleTag in config_inc.php
#credentials
$config->titleTag = "Max's TO DO List"; #Fills <title> tag. If left empty will fallback to $config->titleTag in config_inc.php
$config->banner = "Max's To Dos"; #goes inside header
# END CONFIG AREA ----------------------------------------------------------
//get_header('SmallPark_AboutUs_header_inc.php'); #defaults to theme header or header_inc.php
get_header(); #defaults to theme header or header_inc.php
echo '<h3 align="center">' . smartTitle() . '</h3>
<ol style="margin-bottom: 15px;">
<li><h4>CHARACTER (h)</h4></li>
<ul>
<li style="margin-bottom: 10px; text-decoration: line-through; color: #bbb;">
<b>Broken / default images</b>
<br />
<i>TIME ESTIMATE: 1 day</i>
<i>TIME ACTUAL: 1 hr</i>
</li>
<li style="margin-bottom: 10px; text-decoration: line-through; color: #bbb;">
<b>Fix radio stat selects</b> - <a href="./_themes/Bootswatch/index.htm" target="_blank">see example here for radio check boxes</a>
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 15px;">
<b>ShowMembers</b>
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 5px; text-decoration: line-through; color: #bbb;">
<b>Cleaner SQL Call</b> - handle more of the sorting in the sql for each of the base search states instead of parsing after the fact<br />
<i>example sql</i>
<code>
<br />
SELECT CodeName, FirstName, LastName, MiddleName, CharID, StatusID <br />
FROM ma_Characters <br />
WHERE StatusID IS >=0 AND <=3 <br />
ORDER BY CodeName ASC; <br />
<br />
</code>
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 15px;">
<b>Tighten up Edit page</b> - all values pass
<br />
<i>TIME ESTIMATE: 3 day</i>
</li>
<li style="margin-bottom: 15px;">
<b>Delete Character Page</b> - all values pass
<br />
<i>TIME ESTIMATE: 3 day</i>
</li>
<li style="margin-bottom: 15px; text-decoration: line-through; color: #bbb;">
<b><strike>Create New Character Page</strike></b>
<br />
<i>TIME ESTIMATE: 3 day</i>
</li>
<li style="margin-bottom: 15px;">
<b>Request Character Page</b>
<br>
<ul>
<li>Account for posting record</li>
<li>Account for character total (OCs and FCs)</li>
</ul>
<br />
<i>TIME ESTIMATE: 3 day</i>
</li>
<li style="margin-bottom: 15px;">
<b>convert to classes</b>
<br />
<i>TIME ESTIMATE: 2 week</i>
</li>
<li style="margin-bottom: 15px;">
<b>Character Image Upload</b>
<br />
<i>TIME ESTIMATE: 1 week</i>
</li>
<li style="margin-bottom: 15px;">
<b>Power Personalizer</b>
<br />
<i>TIME ESTIMATE: 1 week for testing and play</i>
</li>
<li style="margin-bottom: 15px;">
<b>Playby Recommender</b>
<br />
<i>TIME ESTIMATE: 1 week for testing and play</i>
</li>
<li style="margin-bottom: 15px;">
<b>test system</b> - then make posting forum
<br />
<i>TIME ESTIMATE: 1 week for testing and play</i>
</li>
</ul>
<li ><h4 style="padding-top: 15px;"><b>MENU (w)</b><h4></li>
<ul>
<li style="margin-bottom: 5px;">
<b>function maxLinks()</b> - new improved menubar with dropdowns incorporated
<br />
NOTES - already begun, see common-inc.php, see <a href="./_themes/Bootswatch/index.htm" target="_blank">demo style here</a>.
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 5px;">
<b>Members Page</b> - so folks can see each others deets if logged in.
<br />
NOTES - already begun, see profile.php, which has show member option <a href="' . VIRTUAL_PATH . 'characters/index.php?act=ShowMembers" target="_blank">demo style here</a>.
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
</ul>
<li ><h4 style="padding-top: 15px;"><b>User Area (w)</b><h4></li>
<ul>
<li style="margin-bottom: 5px;">
<b>showMyCharacters()</b> - display any characters assigned to my profile on my dashboard
<br />
NOTES - neccessary SQL ought to be/exist in profileNew.php</a>.
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 5px;">
<b>Activity Check</b>.
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
<li style="margin-bottom: 5px;">
<b>Contact Modal - </b> It pops up so we don\'t have to load a contact page :D. Use/adapt existing contact page.<br /<br />
Update Contact Modal with \'Are you human?\' google thingie.
<br />
<i>TIME ESTIMATE: 1 day</i>
</li>
</ul>
<li ><h4 style="padding-top: 15px;"><b>Polls + Surveys (w)</b><h4></li>
<ul>
<li style="margin-bottom: 5px;">
<b>Survey/Poll Section</b> - take from dashboard, display on homepage
<br />
NOTES - neccessary SQL ought to be/exist in profileNew.php.
<br />
<i>TIME ESTIMATE: 3 weeks</i>
</li>
</ul>
<li ><h4 style="padding-top: 15px;"><b>Polls + Surveys (w)</b><h4></li>
<ul>
<li style="margin-bottom: 5px;">
<b>Posts</b> - PostEmojies
<br />
Concept - Just as you could select any character to post as, now you will be able to select any avatar of the character so if you are in civieis it’s more obvious. Likewise if you are set to ‘incognito’ mode, the site would use your ‘incognito’ avatar as your standard thumbnail. Otherwise it would use your hero thumbnail. Character galleries are now unlimited in size so you can have lots.
<br /><br />
- public (based on status ID - Tony Stark, Captain Ameria, FF)<br />
- private (X-Men, Young Avengers is private) <br />
- heroic (X-Men/FF - costumed modes)<br />
<br />
<i>TIME ESTIMATE: 2 months</i>
</li>
<li style="margin-bottom: 5px;">
<b>ShowEntireThread</b>
<br />
Concept - Shows the whole damn thread as a single page so no unnecessary paging.
<br />
<i>TIME ESTIMATE: 2 months</i>
</li>
<li style="margin-bottom: 5px;">
<b>PostBetween</b>
<br />
Concept - allows the insertion of a post between to existing posts in a thread.
<br />
<i>TIME ESTIMATE: 2 months</i>
</li>
</ul>
</ol>';
get_footer(); #defaults to theme header or footer_inc.php