

Nextrek
@ 602
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php interface CommentRepositoryInterface { public function addComment($comment); public function countComments($id_local); public function getComments($id_local, $start_index, $length); public function editComment($id_comment, $content); public function removeComment($id_comment); public function getImages($id_comment); public function addImages($id_comment, $imgs); public function deleteImage($id_comment, $img); } ?> |