1<?php
2
3/*
4 * To change this template, choose Tools | Templates
5 * and open the template in the editor.
6 */
7
8/**
9 * Description of ReviewerReviewStatusInProgress
10 *
11 * @author nadeera
12 */
13class ReviewerReviewStatusActivated extends BaseReviewStatus {
14
15    /**
16     *
17     * @return int
18     */
19    public function getStatusId() {
20        return 1;
21    }
22
23    /**
24     *
25     * @return \ReviewStatusActivated
26     */
27    public static function getInstance(){
28        return new ReviewerReviewStatusActivated();
29    }
30
31    /**
32     *
33     * @return string
34     */
35    public function getName() {
36        return __("Activated");
37    }
38
39    /**
40     *
41     * @return boolean
42     */
43    public function isEvaluationFormEditable(){
44        return true;
45    }
46}