i bir forum im oluşturma için iyi bir mvc adlandırma kuralı kullanmak istiyorum.
ben merak ediyorum, ben bu yapıyı kullanmanız gerekir:
controller: threads
model: threads_model (eg. $threads_model->get_all_threads, $threads_model->add_thread, $threads_model->add_post, $threads_model->add_comment)
controller: tags
model: tags_model (eg. $tags_model->get_all_tags, $tags_model->add_tag)
controller: users
model: users_model (eg. $users_model->get_all_users, $users_model->add_user)
veya
controller: content
model: content_model (eg. $content_model->get_all_tags, $content_model->get_all threads...)
controller: users
model: users_model (eg. $users_model->get_all_users, $users_model->add_user)
this is my first time using mvc so i want to know what is best practice fveyathis. should i like in the first example separate every "thing" (tags, threads, users...) veyashould i use the second one? further more, should i in the first example separate comments and posts as well so they will be their own controllers/models?
would be good if someone gave me some good mvc pattern fveyaforums.