Added very basic forum functionality
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
KekRozsak\FrontBundle\Entity\ForumPost:
|
||||
type: entity
|
||||
table: forum_posts
|
||||
id:
|
||||
id:
|
||||
type: integer
|
||||
generator:
|
||||
strategy: AUTO
|
||||
fields:
|
||||
created_at:
|
||||
type: datetime
|
||||
nullable: false
|
||||
updated_at:
|
||||
type: datetime
|
||||
nullable: true
|
||||
update_reason:
|
||||
type: string
|
||||
nullable: true
|
||||
text:
|
||||
type: text
|
||||
nullable: false
|
||||
manyToOne:
|
||||
created_by:
|
||||
targetEntity: User
|
||||
inversedBy: forum_posts
|
||||
nullable: false
|
||||
updated_by:
|
||||
targetEntity: User
|
||||
nullable: true
|
||||
default: null
|
||||
topic:
|
||||
targetEntity: ForumTopic
|
||||
inversedBy: posts
|
@@ -23,6 +23,10 @@ KekRozsak\FrontBundle\Entity\ForumTopic:
|
||||
update_reason:
|
||||
type: text
|
||||
nullable: true
|
||||
oneToMany:
|
||||
posts:
|
||||
targetEntity: ForumPost
|
||||
mappedBy: topic
|
||||
manyToOne:
|
||||
created_by:
|
||||
targetEntity: User
|
||||
|
@@ -21,6 +21,15 @@ KekRozsak\FrontBundle\Entity\User:
|
||||
display_name:
|
||||
type: string(50)
|
||||
nullable: false
|
||||
oneToMany:
|
||||
articles:
|
||||
targetEntity: Article
|
||||
mappedBy: created_by
|
||||
fetch: EXTRA_LAZY
|
||||
forum_posts:
|
||||
targetEntity: ForumPost
|
||||
mappedBy: created_by
|
||||
fetch: EXTRA_LAZY
|
||||
manyToMany:
|
||||
roles:
|
||||
targetEntity: Role
|
||||
|
@@ -1,5 +1,26 @@
|
||||
{% extends '::main_template.html.twig' %}
|
||||
{% block title %} - Fórum - {{ topicGroup.title }} - {{ topic.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<h3>Fórum - {{ topicGroup.title }} - {{ topic.title }}</h3>
|
||||
<h3><a href="{{ path('KekRozsakFrontBundle_forum_main') }}">Fórum</a> - <a href="{{ path('KekRozsakFrontBundle_forum_topic_list', { topicGroupSlug: topicGroup.slug }) }}">{{ topicGroup.title }}</a> - {{ topic.title }}</h3>
|
||||
{% if topic.posts|length > 0 %}
|
||||
<table>
|
||||
<thead>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for post in topic.posts %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ post.createdBy.displayName }}<br />
|
||||
{{ post.createdAt|date('Y-m-d H:i') }}<br />
|
||||
Admin<br />
|
||||
Tagság kezdete: {{ post.createdBy.RegisteredAt|date('Y-m-d') }}
|
||||
</td>
|
||||
<td>{{ post.text }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% else %}
|
||||
A témában még nincsenek hozzászólások.
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
@@ -6,21 +6,26 @@
|
||||
<table id="temakor-lista">
|
||||
<thead>
|
||||
<tr>
|
||||
<td><a href="{{ path('KekRozsakFrontBundle_forum_topic_list', {topicGroupSlug: topicGroup.slug}) }}">{{ topicGroup.title }}</a></td>
|
||||
<td></td>
|
||||
<td colspan="2"><a href="{{ path('KekRozsakFrontBundle_forum_topic_list', {topicGroupSlug: topicGroup.slug}) }}">{{ topicGroup.title }}</a></td>
|
||||
<td>Témák száma</td>
|
||||
<td>Hozzászólások száma</td>
|
||||
<td>Utolsó hozzászólás</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if topicGroup.topics|length > 0 %}
|
||||
{% for topic in topicGroup.topics %}
|
||||
<tr>
|
||||
<td>[]</td>
|
||||
<td><a href="{{ path('KekRozsakFrontBundle_forum_post_list', {topicGroupSlug: topicGroup.slug, topicSlug: topic.slug}) }}">{{ topic.title }}</a></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr>
|
||||
<td colspan="2">Ebben a kategóriában nincsenek témák</td>
|
||||
<td colspan="4">Ebben a kategóriában nincsenek témák</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{% extends '::main_template.html.twig' %}
|
||||
{% block title %} - Fórum - {{ topicGroup.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<h3>Fórum - {{ topicGroup.title }}</h3>
|
||||
<h3><a href="{{ path('KekRozsakFrontBundle_forum_main') }}">Fórum</a> - {{ topicGroup.title }}</h3>
|
||||
{% if topicGroup.topics|length > 0 %}
|
||||
<table>
|
||||
<thead>
|
||||
|
Reference in New Issue
Block a user