You are here

function Provision_Config_Example::filename in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 example/example_service/drush/Provision/Config/Example.php \Provision_Config_Example::filename()

Where the file generated will end up.

It is extremely important that this path is only made up of information relative to this class, and does not use drush_get_option or the d() accessor.

2 calls to Provision_Config_Example::filename()
Provision_Config_Example::unlink in example/example_service/drush/Provision/Config/Example.php
Override the unlink method.
Provision_Config_Example::write in example/example_service/drush/Provision/Config/Example.php
Override the write method.

File

example/example_service/drush/Provision/Config/Example.php, line 20

Class

Provision_Config_Example
A basic configuration file class.

Code

function filename() {
  return $this->example_config_path . '/example.conf';
}