| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
//$Id: currency.module,v 1.8.2.2.2.2 2008/09/11 15:32:25 kbahey Exp $ |
//$Id: currency.module,v 1.8.2.2.2.3 2008/09/12 16:01:32 kbahey Exp $ |
| 4 |
|
|
| 5 |
// Copyright 2005 Khalid Baheyeldin http://2bits.com |
// Copyright 2005 Khalid Baheyeldin http://2bits.com |
| 6 |
|
|
| 143 |
$_SESSION['currency_to'] = $to; |
$_SESSION['currency_to'] = $to; |
| 144 |
|
|
| 145 |
drupal_set_message($result); |
drupal_set_message($result); |
| 146 |
|
} |
| 147 |
|
|
| 148 |
|
// views bits |
| 149 |
|
// Implementation of hook_views |
| 150 |
|
function currency_views_api() { |
| 151 |
|
return array( |
| 152 |
|
'api' => 2, |
| 153 |
|
'path' => drupal_get_path('module', 'currency'). '/views', |
| 154 |
|
); |
| 155 |
} |
} |
| 156 |
|
|