mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-17 13:03:47 +00:00
[securemail] Use composer autoload
This commit is contained in:
parent
a465e7dcd9
commit
c885f3c7ab
1 changed files with 1 additions and 9 deletions
|
@ -15,16 +15,8 @@ use Friendica\Core\PConfig;
|
||||||
use Friendica\Core\Renderer;
|
use Friendica\Core\Renderer;
|
||||||
use Friendica\Util\Emailer;
|
use Friendica\Util\Emailer;
|
||||||
|
|
||||||
/* because the fraking openpgp-php is in composer, require libs in composer
|
require_once 'vendor/autoload.php';
|
||||||
* and then don't use autoloader to load classes... */
|
|
||||||
$path = __DIR__ . '/vendor/phpseclib/phpseclib/phpseclib/';
|
|
||||||
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
|
|
||||||
/* so, we don't use the autoloader and include what we need */
|
|
||||||
$path = __DIR__ . '/vendor/singpolyma/openpgp-php/lib';
|
|
||||||
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
|
|
||||||
|
|
||||||
require_once 'openpgp.php';
|
|
||||||
require_once 'openpgp_crypt_symmetric.php';
|
|
||||||
function securemail_install()
|
function securemail_install()
|
||||||
{
|
{
|
||||||
Hook::register('addon_settings', 'addon/securemail/securemail.php', 'securemail_settings');
|
Hook::register('addon_settings', 'addon/securemail/securemail.php', 'securemail_settings');
|
||||||
|
|
Loading…
Reference in a new issue