This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = Commerce Packing Slip PDF | |
description = Provides a PDF version of a Drupal Commerce Packing Slip. | |
package = Commerce (contrib) | |
core = 7.x | |
dependencies[] = commerce_packing_slip | |
dependencies[] = PDF_using_mPDF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Provides product bundles for Drupal Commerce | |
*/ | |
module_load_include('inc', 'commerce_bundle', 'includes/commerce_bundle.field'); | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = Bakery Override | |
description = Appends User Fields to the Bakery setting form | |
core = 7.x | |
dependencies[] = bakery |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Admin settings, see INSTALL.txt | |
*/ | |
function bakery_settings($form, &$form_state) { | |
$form = array( | |
'#submit' => array('bakery_settings_submit'), | |
); | |
$form['bakery_is_master'] = array( |