You are here

function pay::notes in Pay 7

Same name and namespace in other branches
  1. 6 includes/handlers/pay.inc \pay::notes()

File

includes/handlers/pay.inc, line 179
The base class for the Payment API.

Class

pay
@file The base class for the Payment API.

Code

function notes() {
  if (isset($this->notes)) {
    $notes_format = $this
      ->set_notes_format();
    return check_markup($this->notes, $notes_format);
  }
}