1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41:
<?php
declare(strict_types=1);
/**
* +------------------------------------------------------------+
* | apnscp |
* +------------------------------------------------------------+
* | Copyright (c) Apis Networks |
* +------------------------------------------------------------+
* | Licensed under Artistic License 2.0 |
* +------------------------------------------------------------+
* | Author: Matt Saladna (msaladna@apisnetworks.com) |
* +------------------------------------------------------------+
*/
/**
* Version control, CVS and subversion
*
* @package core
*/
class Verco_Module extends Module_Skeleton
{
protected $exportedFunctions = [
'*' => PRIVILEGE_SITE
];
/**
* bool svn_enabled
* Checks to see if Subversion is enabled for an account
*
* @return bool
*/
public function svn_enabled(): bool
{
return $this->ssh_enabled() && file_exists($this->domain_fs_path() . '/usr/bin/svn');
}
}