yii\base\Controller::getUniqueId PHP 메소드

getUniqueId() 공개 메소드

Returns the unique ID of the controller.
public getUniqueId ( ) : string
리턴 string the controller ID that is prefixed with the module ID (if any).
    public function getUniqueId()
    {
        return $this->module instanceof Application ? $this->id : $this->module->getUniqueId() . '/' . $this->id;
    }