| 1 | <?php |
||
| 10 | class ApproveHandler extends CommentHandler |
||
| 11 | { |
||
| 12 | private static $url_segment = 'approve'; |
||
| 13 | |||
| 14 | protected $buttonClasses = 'font-icon-tick'; |
||
| 15 | |||
| 16 | protected $label = 'Approve'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Comment $comment |
||
| 20 | * |
||
| 21 | * @return Comment |
||
| 22 | */ |
||
| 23 | public function updateComment($comment) |
||
| 28 | } |
||
| 29 |