You are here

protected function UCXF_Pane::getFieldName in Extra Fields Checkout Pane 6.2

Create key for field

@access protected

Parameters

UCXF_Field $field:

Return value

string

5 calls to UCXF_Pane::getFieldName()
UCXF_AddressPane::checkout_review in class/UCXF_AddressPane.class.php
Outputs data for the review page @access protected
UCXF_Pane::checkout_review in class/UCXF_Pane.class.php
Outputs data for the review page @access protected
UCXF_Pane::checkout_view in class/UCXF_Pane.class.php
View the pane to the customer @access protected
UCXF_Pane::order_edit_form in class/UCXF_Pane.class.php
View the editable form @access protected
UCXF_Pane::order_edit_process in class/UCXF_Pane.class.php
Process order data @access protected

File

class/UCXF_Pane.class.php, line 410
Contains the UCXF_Pane class.

Class

UCXF_Pane
Base class for checkout panes and order panes implemented by Extra Fields Pane.

Code

protected function getFieldName($field) {
  return $this->pane_id . '_' . $field->db_name;
}