| 1 |
<?php
|
| 2 |
|
| 3 |
// $Id: uc_protx_vsp_direct.install,v 1.1.2.1 2008/08/29 20:27:04 hanoii Exp $
|
| 4 |
|
| 5 |
/**
|
| 6 |
* @file
|
| 7 |
* Protx VSP Direct payment gateway module for Ubercart.
|
| 8 |
*
|
| 9 |
* Developed by solarian (http://drupal.org/user/166738).
|
| 10 |
* Incorporating suggestions from hanoii (http://drupal.org/user/23157).
|
| 11 |
* Implementing v2.22 of the VSP Direct Protocol.
|
| 12 |
* http://www.protx.com/downloads/docs/VSPDirectProtocolandIntegrationGuideline.pdf
|
| 13 |
*
|
| 14 |
* Note: Originally the Protx interface was called the "Verified Payment System"
|
| 15 |
* and was referred to by the acronym "VPS", but now it's called "Veri-Secure Payment"
|
| 16 |
* and therefore has a different acronym, "VSP".
|
| 17 |
* Data fields and URLs, however, still partly use the "VPS" acronym.
|
| 18 |
*
|
| 19 |
* This software is licenced under the GPLv2.
|
| 20 |
*
|
| 21 |
*/
|
| 22 |
function uc_protx_vsp_direct_update_1() {
|
| 23 |
$items = array();
|
| 24 |
// as we moved some !$may_cache to $may_cache we need to rebuild the menu
|
| 25 |
menu_rebuild();
|
| 26 |
return $items;
|
| 27 |
}
|