You are here

protected function RoboFile::getPanopolyFeatures in Panopoly 7

Gets a list of the panopoly_* features.

Return value

string[] The machine names of the panopoly_* features.

5 calls to RoboFile::getPanopolyFeatures()
RoboFile::checkoutManyreposForRelease in ./RoboFile.php
Checks out the many repos for the purpose of making a release.
RoboFile::checkOverridden in ./RoboFile.php
Checks if any of the features are overridden.
RoboFile::getDrupalOrgMakeContents in ./RoboFile.php
Gets the contents for the top-level drupal-org.make file from the features.
RoboFile::releasePublish in ./RoboFile.php
Release Stage 3: Publishes new releases on Drupal.org.
RoboFile::releasePush in ./RoboFile.php
Release Stage 2: Pushes commits and tags to the Git remote.

File

./RoboFile.php, line 200

Class

RoboFile
This is project's console commands configuration for Robo task runner.

Code

protected function getPanopolyFeatures() {
  return array_keys($this->PANOPOLY_FEATURES);
}