getCodeFields() protected method

Get the GET parameters for the code request.
protected getCodeFields ( string | null $state = null ) : array
$state string | null
return array
コード例 #1
0
 /**
  * {@inheritdoc}
  */
 protected function getCodeFields($state = null)
 {
     $fields = parent::getCodeFields($state);
     if ($this->popup) {
         $fields['display'] = 'popup';
     }
     return $fields;
 }