Add basic title edition

Fix #218
I mean basic, because there is no javascript at all. It could be a nice edit-in-place. But for the moment, it is simple.
This commit is contained in:
Jeremy Benoist
2015-06-02 18:54:34 +02:00
parent 51d9699fa1
commit 82d6d9cb06
8 changed files with 147 additions and 13 deletions

View File

@ -390,7 +390,7 @@ class Entry
/**
* @param bool $isPublic
*/
public function setPublic($isPublic)
public function setIsPublic($isPublic)
{
$this->isPublic = $isPublic;
}

View File

@ -51,6 +51,12 @@ class Tag
$this->user = $user;
$this->entries = new ArrayCollection();
}
public function __toString()
{
return $this->label;
}
/**
* Get id.
*