generate() публичный Метод

Return a wildcard in the back end
public generate ( ) : string
Результат string
 /**
  * Display a wildcard in the back end
  * @return string
  */
 public function generate()
 {
     if (TL_MODE == 'BE') {
         return parent::generate();
     }
     // Check if the user is a Facebook user
     if (FE_USER_LOGGED_IN) {
         $this->import('FrontendUser', 'User');
         $this->editable = deserialize($this->editable);
         // Remove the password field
         if ($this->User->fblogin && ($intKey = array_search('password', $this->editable)) !== false) {
             $fields = $this->editable;
             unset($fields[$intKey]);
             $this->editable = $fields;
         }
     }
     return parent::generate();
 }