| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace DebenOldert\AutoDeploy;
- ###################################
- # #
- # DO NOT EDIT THIS FILE #
- # Use the settings.class.php file #
- # #
- ###################################
- abstract class Base
- {
- const name = "AutoDeploy";
- const title = "Automated Version Deploy";
- const author = "Deben Oldert";
- const autostart = false;
- const version = "0.1";
- const keys = array();
- const download_dir = 'download';
- const acceptDraft = false;
- const acceptPre = false;
- }
- return Base::name;
|