Skip to content

Instantly share code, notes, and snippets.

@kimpepper
Created January 20, 2014 22:14
Show Gist options
  • Save kimpepper/8530347 to your computer and use it in GitHub Desktop.
Save kimpepper/8530347 to your computer and use it in GitHub Desktop.
<?php
namespace Drupal\page_example\Controller;
use Drupal\Core\Controller\ControllerBase;
class PageExampleController extends ControllerBase {
public function example() {
return array(
'#markup' => '<p>' . $this->t('This is some content') . '</p>',
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment