$invoice_type['title'],
'type' => 'title',
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_options',
),
array(
'title' => __( 'Page Orientation', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_orientation',
'default' => 'P',
'type' => 'select',
'options' => array(
'P' => __( 'Portrait', 'woocommerce-jetpack' ),
'L' => __( 'Landscape', 'woocommerce-jetpack' ),
),
),
array(
'title' => __( 'Page Format', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_format',
'default' => 'A4', // PDF_PAGE_FORMAT
'type' => 'select',
'options' => array_replace( array( 'custom' => __( 'Custom', 'woocommerce-jetpack' ) ), $this->get_page_formats() ),
),
array(
'desc' => __( 'Custom: width (millimeters)', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_format_custom_width',
'default' => '0',
'type' => 'number',
'custom_attributes' => array( 'min' => 0 ),
),
array(
'desc' => __( 'Custom: height (millimeters)', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_format_custom_height',
'default' => '0',
'type' => 'number',
'custom_attributes' => array( 'min' => 0 ),
),
array(
'title' => __( 'Margin Left', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_margin_left',
'default' => 15, // PDF_MARGIN_LEFT,
'type' => 'number',
),
array(
'title' => __( 'Margin Right', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_margin_right',
'default' => 15, // PDF_MARGIN_RIGHT,
'type' => 'number',
),
array(
'title' => __( 'Margin Top', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_margin_top',
'default' => 27, // PDF_MARGIN_TOP,
'type' => 'number',
),
array(
'title' => __( 'Margin Bottom', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_margin_bottom',
'default' => 0, // PDF_MARGIN_BOTTOM,
'type' => 'number',
),
array(
'title' => __( 'Background Image', 'woocommerce-jetpack' ),
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_background_image',
'default' => '',
'type' => 'text',
'desc' => sprintf( __( 'Enter a local URL to an image. Upload your image using the media uploader.', 'woocommerce-jetpack' ),
admin_url( 'media-new.php' ) ) .
wcj_get_invoicing_current_image_path_desc( 'wcj_invoicing_' . $invoice_type['id'] . '_background_image' ) . '
' .
sprintf( __( 'If you are experiencing issues with displaying background image, please try setting different values for the "Advanced: Default Images Directory" option in %s.', 'woocommerce-jetpack' ),
'' .
__( 'PDF Invoicing & Packing Slips > Advanced', 'woocommerce-jetpack' ) .
'' ),
'desc_tip' => __( 'Leave blank to disable', 'woocommerce-jetpack' ),
'class' => 'widefat',
),
array(
'type' => 'sectionend',
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_options',
),
) );
}
return $settings;