commit 85ec2c20671b0a89eb3a6d5e641de2e3b2e65e96 Author: Joel Pittet Date: Sat Feb 14 20:57:42 2015 -0800 revert docs and migrate stuff diff --git a/core/lib/Drupal/Core/Extension/Extension.php b/core/lib/Drupal/Core/Extension/Extension.php index fe34439..3c765fe 100644 --- a/core/lib/Drupal/Core/Extension/Extension.php +++ b/core/lib/Drupal/Core/Extension/Extension.php @@ -60,8 +60,7 @@ class Extension implements \Serializable { * The relative path and filename of the extension's info file; e.g., * 'core/modules/node/node.info.yml'. * @param string $filename - * (optional) The filename of the main extension file; e.g., - * 'node.module.php'. + * (optional) The filename of the main extension file; e.g., 'node.module'. */ public function __construct($root, $type, $pathname, $filename = NULL) { $this->root = $root; diff --git a/core/modules/migrate_drupal/src/Tests/Table/System.php b/core/modules/migrate_drupal/src/Tests/Table/System.php index 7ac9289..08e638d 100644 --- a/core/modules/migrate_drupal/src/Tests/Table/System.php +++ b/core/modules/migrate_drupal/src/Tests/Table/System.php @@ -850,7 +850,7 @@ public function load() { 'filename' => 'themes/bluemarine/bluemarine.info', 'name' => 'bluemarine', 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine.php', + 'owner' => 'themes/engines/phptemplate/phptemplate.engine', 'status' => '0', 'throttle' => '0', 'bootstrap' => '0', @@ -883,7 +883,7 @@ public function load() { 'filename' => 'themes/garland/garland.info', 'name' => 'garland', 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine.php', + 'owner' => 'themes/engines/phptemplate/phptemplate.engine', 'status' => '1', 'throttle' => '0', 'bootstrap' => '0', @@ -894,7 +894,7 @@ public function load() { 'filename' => 'themes/garland/minnelli/minnelli.info', 'name' => 'minnelli', 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine.php', + 'owner' => 'themes/engines/phptemplate/phptemplate.engine', 'status' => '0', 'throttle' => '0', 'bootstrap' => '0', @@ -905,7 +905,7 @@ public function load() { 'filename' => 'themes/pushbutton/pushbutton.info', 'name' => 'pushbutton', 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine.php', + 'owner' => 'themes/engines/phptemplate/phptemplate.engine', 'status' => '0', 'throttle' => '0', 'bootstrap' => '0', diff --git a/core/tests/Drupal/Tests/Core/Theme/TwigEngineTest.php b/core/tests/Drupal/Tests/Core/Theme/TwigEngineTest.php index 4475d89..baf45c1 100644 --- a/core/tests/Drupal/Tests/Core/Theme/TwigEngineTest.php +++ b/core/tests/Drupal/Tests/Core/Theme/TwigEngineTest.php @@ -10,7 +10,7 @@ use Drupal\Tests\UnitTestCase; /** - * Test coverage for the file core/themes/engines/twig/twig.engine.php. + * Test coverage for the file core/themes/engines/twig/twig.engine. * * @group Theme */ @@ -31,7 +31,7 @@ protected function setUp() { // Ensure that twig.engine is loaded, it is needed to access // twig_drupal_escape_filter(). - require_once $this->root . '/core/themes/engines/twig/twig.engine.php'; + require_once $this->root . '/core/themes/engines/twig/twig.engine'; $this->twigEnvironment = $this->getMock('\Twig_Environment'); }