diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-09-05 12:03:20 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-09-05 12:03:20 -0400 |
| commit | 512840fe1dca3ddc686360107ae1369e82696502 (patch) | |
| tree | 5e983be9f84be97e50d72bbc0a946d52f251e2f8 /app/Controller/Board.php | |
| parent | bac18d80f8ff8fce9d167671273e80a492f4c3c5 (diff) | |
Improve pull-request about swimlane description
Diffstat (limited to 'app/Controller/Board.php')
| -rw-r--r-- | app/Controller/Board.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 179c6b3c..360a705f 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -321,6 +321,18 @@ class Board extends Base } /** + * Display swimlane description in tooltip + * + * @access public + */ + public function swimlane() + { + $project = $this->getProject(); + $swimlane = $this->swimlane->getById($this->request->getIntegerParam('swimlane_id')); + $this->response->html($this->template->render('board/tooltip_description', array('task' => $swimlane))); + } + + /** * Enable collapsed mode * * @access public |
