Przeglądaj źródła

Add comment moderation in admin

master
nano 6 dni temu
rodzic
commit
490557e918
1 zmienionych plików z 20 dodań i 0 usunięć
  1. +20
    -0
      core/helpers.asp

+ 20
- 0
core/helpers.asp Wyświetl plik

@@ -350,6 +350,10 @@ Function PostUrl(ByVal slug)
PostUrl = "/posts/" & Server.URLEncode(NormalizeSlug(slug)) PostUrl = "/posts/" & Server.URLEncode(NormalizeSlug(slug))
End Function End Function


Function PostPath(ByVal slug)
PostPath = "/posts/" & NormalizeSlug(slug)
End Function

Function PostsUrl() Function PostsUrl()
PostsUrl = "/posts" PostsUrl = "/posts"
End Function End Function
@@ -382,6 +386,22 @@ Function AdminPostAIUrl(ByVal postId)
AdminPostAIUrl = "/admin/posts/" & Server.URLEncode(CStr(postId)) & "/ai" AdminPostAIUrl = "/admin/posts/" & Server.URLEncode(CStr(postId)) & "/ai"
End Function End Function


Function AdminCommentsUrl()
AdminCommentsUrl = "/admin/comments"
End Function

Function AdminCommentApproveUrl(ByVal commentId)
AdminCommentApproveUrl = "/admin/comments/" & Server.URLEncode(CStr(commentId)) & "/approve"
End Function

Function AdminCommentUnapproveUrl(ByVal commentId)
AdminCommentUnapproveUrl = "/admin/comments/" & Server.URLEncode(CStr(commentId)) & "/unapprove"
End Function

Function AdminCommentDeleteUrl(ByVal commentId)
AdminCommentDeleteUrl = "/admin/comments/" & Server.URLEncode(CStr(commentId)) & "/delete"
End Function

Function AdminAIPromptUrl() Function AdminAIPromptUrl()
AdminAIPromptUrl = "/admin/ai-prompt" AdminAIPromptUrl = "/admin/ai-prompt"
End Function End Function


Ładowanie…
Anuluj
Zapisz

Powered by TurnKey Linux.