ShipConfigFilesHook: new hook

Allows other modules to ship additional files to/through Icinga 2.
This commit is contained in:
Thomas Gelf 2015-10-15 20:32:15 +02:00
parent e7687d226a
commit 81c6920b93

View File

@ -0,0 +1,11 @@
<?php
namespace Icinga\Module\Director\Web\Hook;
abstract class ShipConfigFilesHook
{
public function fetchFiles()
{
return array();
}
}