Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>master
parent
bec75018be
commit
0e1a849031
12 changed files with 110 additions and 105 deletions
@ -1,105 +0,0 @@ |
||||
* book borrowing, lending and returning |
||||
* event creation |
||||
* songs |
||||
* news editor for administrators |
||||
* PDF header fix |
||||
* draft flag for Document and Article: only writer and administrators see it |
||||
from the Document/Article list, in preview mode |
||||
* full Document/Article list for administrators |
||||
* polls |
||||
* chat |
||||
* Users' favourite forum topics |
||||
* article categories |
||||
* blog |
||||
* site-based theme for ckeditor (both ui and the editor) |
||||
|
||||
Song |
||||
id |
||||
title |
||||
createdBy |
||||
createdAt |
||||
SongVersion[] |
||||
id |
||||
createdBy |
||||
createdAt |
||||
content |
||||
|
||||
News |
||||
lead |
||||
|
||||
Poll |
||||
id |
||||
createdAt |
||||
createdBy |
||||
updatedAt |
||||
updatedBy |
||||
updateReason |
||||
endTime (timestamp/date?) |
||||
anyoneCanAddAnswers |
||||
question |
||||
multiselect |
||||
voters |
||||
PollAnswer[] |
||||
id |
||||
createdAt |
||||
createdBy |
||||
updatedAt |
||||
updatedBy |
||||
updateReason |
||||
voters |
||||
text |
||||
|
||||
UserForumViewed |
||||
User |
||||
ForumTopic |
||||
timestamp of last visit |
||||
|
||||
BlogPost |
||||
id |
||||
title |
||||
slug |
||||
timestamp |
||||
lead (?) |
||||
text |
||||
poster |
||||
public |
||||
|
||||
ForumTopicGroup |
||||
visible |
||||
locked |
||||
|
||||
ForumTopic |
||||
roles who can access it |
||||
visible |
||||
locked |
||||
|
||||
ForumPost |
||||
last edited by |
||||
last edited timestamp |
||||
last edit reason |
||||
edit count |
||||
|
||||
Event |
||||
last edited by |
||||
last edited timestamp |
||||
last edit reason |
||||
location |
||||
commentable |
||||
|
||||
PrivateChatMessage |
||||
id |
||||
from user |
||||
to user |
||||
timestamp |
||||
|
||||
GroupChatMessage |
||||
id |
||||
from user |
||||
to group |
||||
timestamp |
||||
|
||||
PublicChatMessage |
||||
id |
||||
from user |
||||
to channel (ChatChannel class with id and name fields) |
||||
timestamp |
@ -0,0 +1,15 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* title |
||||
* slug |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAt |
||||
* updateReason |
||||
* lead(?) |
||||
* content |
||||
* public |
||||
* Group (can be NULL) |
||||
*/ |
@ -0,0 +1,13 @@ |
||||
<?php |
||||
/* |
||||
* Required for the commentable interface |
||||
* |
||||
* id |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAt |
||||
* updateReason |
||||
* title (nullable) |
||||
* content |
||||
*/ |
@ -0,0 +1,8 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* from |
||||
* group |
||||
* timestamp |
||||
* content |
||||
*/ |
@ -0,0 +1,15 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAt |
||||
* updateReason |
||||
* endTime (date/datetime?) |
||||
* anyoneCanAddAnswers |
||||
* question |
||||
* multiselect |
||||
* voters(?) |
||||
* answers |
||||
*/ |
@ -0,0 +1,11 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAt |
||||
* updateReason |
||||
* voters |
||||
* text |
||||
*/ |
@ -0,0 +1,8 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* from |
||||
* to |
||||
* timestamp |
||||
* content |
||||
*/ |
@ -0,0 +1,5 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* name |
||||
*/ |
@ -0,0 +1,8 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* from |
||||
* channel |
||||
* timestamp |
||||
* content |
||||
*/ |
@ -0,0 +1,12 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* title |
||||
* slug |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAtt |
||||
* updateReason |
||||
* versions |
||||
*/ |
@ -0,0 +1,9 @@ |
||||
<?php |
||||
/* |
||||
* id |
||||
* createdBy |
||||
* createdAt |
||||
* updatedBy |
||||
* updatedAt |
||||
* updateReason |
||||
* content |
@ -0,0 +1,6 @@ |
||||
<?php |
||||
/* |
||||
* User |
||||
* ForumTopic |
||||
* lastVisitedAt |
||||
*/ |
Loading…
Reference in new issue