💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
Drupal module demo - module_hero_v2 module_hero.info.yml: ``` name: "Module Hero" description: "We are going to be Drupal 8 module heros at the end" type: module core: 8.x ``` module_hero.routing.yml: ``` module_hero.herolist: path: '/herolist' defaults: _controller: '\Drupal\module_hero\Controller\HeroController::heroList' _title: 'Our super heroes list' requirements: _permission: 'access content' ``` src/Controller/HeroController.php: ``` <?php namespace Drupal\module_hero\Controller; class HeroController { public function heroList() { $heroes = [ ['name' => 'Neo1'], ['name' => 'Neo2'], ['name' => 'Neo3'], ['name' => 'Neo4'], ['name' => 'Neo5'], ['name' => 'Neo6'], ['name' => 'Neo7'], ['name' => 'Neo8'] ]; $ourHeroes = ''; foreach ($heroes as $hero) { $ourHeroes .='<li>'. $hero['name']. '</li>'; } return [ '#type' => 'markup', '#markup' => '<ol>' . $ourHeroes . '</ol>', ]; } } ``` .