Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
	interface CommentRepositoryInterface {
		public function getComment($id_user, $id_local);
		public function getCommentById($id_comment);
		public function addComment($comment);
		public function countComments($id_local);
		public function getComments($id_local, $start_index, $length, $data_order);
		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);
	}
?>

Commits for Nextrek/Android/SmartCharging/endPoints/nightly/repositories/CommentRepositoryInterface.php

Diff revisions: vs.
Revision Author Commited Message
723 Diff Diff FSallustio picture FSallustio Tue 08 Sep, 2015 15:05:25 +0000

Aggiunto check sull’associazione tra utente e token.

695 Diff Diff FSallustio picture FSallustio Mon 07 Sep, 2015 10:31:36 +0000

Implementata chiamata get_commento.php

636 Diff Diff FSallustio picture FSallustio Tue 01 Sep, 2015 12:09:43 +0000
602 Diff Diff FSallustio picture FSallustio Fri 28 Aug, 2015 10:49:31 +0000
587 Diff Diff FSallustio picture FSallustio Thu 27 Aug, 2015 13:28:12 +0000
415 FSallustio picture FSallustio Wed 22 Jul, 2015 08:27:42 +0000

Piccolo refactor dei file php...