logo

Palette - Make it Colorful🎨

Palette - Visual Page Builder, no design degree required.

Live Demo Download Palette

Scroll
20/06/2025, by Ivan

Menu

Բլոկի օրինակների կարգավորումները օգտագործելու համար մենք կարող ենք փոփոխել HelloBlock դասի build() մեթոդը հետևյալ կերպ՝

  /**
   * {@inheritdoc}
   */  
  public function build() {
    $config = $this->getConfiguration();

    if (!empty($config['hello_block_name'])) {
      $name = $config['hello_block_name'];
    }
    else {
      $name = $this->t('to no one');
    }

    return [
      '#markup' => $this->t('Hello @name!', [
        '@name' => $name,
      ]),
    ];
  }