X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FExtendedProfile%2FExtendedProfilePlugin.php;h=578825aa34e8e8a3fcb5743fb19136f056d37a18;hb=de55d8f83bb2ecf9461510768fe7147aec592055;hp=8436275b78f231d2b962b75d59b8e12f46f3e814;hpb=b6cfcfbcaa0459b39c5d581c103bfa031b2e02cd;p=quix0rs-gnu-social.git diff --git a/plugins/ExtendedProfile/ExtendedProfilePlugin.php b/plugins/ExtendedProfile/ExtendedProfilePlugin.php index 8436275b78..578825aa34 100644 --- a/plugins/ExtendedProfile/ExtendedProfilePlugin.php +++ b/plugins/ExtendedProfile/ExtendedProfilePlugin.php @@ -43,42 +43,6 @@ class ExtendedProfilePlugin extends Plugin return true; } - /** - * Autoloader - * - * Loads our classes if they're requested. - * - * @param string $cls Class requested - * - * @return boolean hook return - */ - function onAutoload($cls) - { - $dir = dirname(__FILE__); - - switch (strtolower($cls)) - { - case 'profiledetailaction': - case 'profiledetailsettingsaction': - case 'userautocompleteaction': - include_once $dir . '/actions/' - . strtolower(mb_substr($cls, 0, -6)) . '.php'; - return false; - break; // Safety first! - case 'extendedprofile': - case 'extendedprofilewidget': - include_once $dir . '/lib/' . strtolower($cls) . '.php'; - return false; - break; - case 'profile_detail': - include_once $dir . '/classes/' . ucfirst($cls) . '.php'; - return false; - break; - default: - return true; - } - } - /** * Add paths to the router table *