Exemple #1
0
 /**
  * Get information describing all types provided by the SDK.
  * @static
  */
 function getTypeList()
 {
     $root_dir = PayPal::getPackageRoot();
     $types = "{$root_dir}/Type/*.php";
     $files = glob($types);
     if (count($files) < 2) {
         return PayPal::raiseError("Types not found in package! (Looked for '{$types}')");
     }
     $retval = array();
     foreach ($files as $type_files) {
         $retval[] = basename(substr($type_files, 0, strpos($type_files, '.')));
     }
     return $retval;
 }
 /**
  * Returns the PayPal public certificate filename.
  *
  * @param string The environment to get the certificate for.
  * @return mixed The path and file of the certificate file, or a PayPal error object on failure.
  */
 function getPayPalCertificateFile($environment)
 {
     $package_root = PayPal::getPackageRoot();
     $cert = $package_root . '/cert/' . strtolower($environment) . '.paypal.com.pem';
     if (@(include "{$package_root}/conf/paypal-sdk.php")) {
         if (isset($__PP_CONFIG['paypal_cert_file']) && !empty($__PP_CONFIG['paypal_cert_file'])) {
             $cert = $__PP_CONFIG['paypal_cert_file'][$environment];
         }
     }
     if (!file_exists($cert)) {
         return PayPal::raiseError("Could not file Paypal public Certificate file '{$cert}'");
     }
     return $cert;
 }
Exemple #3
0
/**
 * Returns an array of paths where the Admin should search for Profile Handler classes
 *
 * @internal
 * @return array An array of paths to search
 */
function _getHandlerPaths()
{
    $package_root = PayPal::getPackageRoot();
    $handler_paths = array("{$package_root}/Profile/Handler");
    if (@(include "{$package_root}/conf/paypal-sdk.php")) {
        if (isset($__PP_CONFIG['custom_handler_dir']) && is_array($__PP_CONFIG['custom_handler_dir'])) {
            $handler_paths = array_merge($__PP_CONFIG['custom_handler_dir'], $handler_paths);
        }
    }
    return $handler_paths;
}