You appear to be a bot. Output may be restricted
Description
Get the notes column for the customer
Usage
$string = EDD_Customer::get_raw_notes();
Parameters
Returns
string The Notes for the customer, non-parsed
Source
File name: easy-digital-downloads/includes/class-edd-customer.php
Lines:
1 to 11 of 11
private function get_raw_notes() { if ( ! is_null( $this->raw_notes ) ) { return $this->raw_notes; } $this->raw_notes = $this->db->get_column( 'notes', $this->id ); return (string) $this->raw_notes; }