Gallery::getCanAddPhoto PHP Method

getCanAddPhoto() public method

can add photo
public getCanAddPhoto ( ) : boolean
return boolean can add photo
    public function getCanAddPhoto()
    {
        return $this->status == Gallery::STATUS_PUBLIC || ($this->status == Gallery::STATUS_PRIVATE || $this->status == Gallery::STATUS_PERSONAL) && Yii::app()->user->getId() == $this->owner;
    }