pay_node_handler_field_pay_form_link.inc in Pay 7
Same filename and directory in other branches
A Views field handler for links to payment forms.
File
modules/pay_node/includes/views/pay_node_handler_field_pay_form_link.incView source
<?php
/**
* @file
* A Views field handler for links to payment forms.
*/
class pay_node_handler_field_pay_form_link extends views_handler_field_node_link {
function render($values) {
if ($pay_form = pay_node_form_load($values->nid)) {
if ($path = $pay_form
->menu_path()) {
$text = !empty($this->options['text']) ? $this->options['text'] : t('Make a payment');
return l($text, $path);
}
}
}
}
Classes
Name | Description |
---|---|
pay_node_handler_field_pay_form_link | @file A Views field handler for links to payment forms. |