You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
506 B
PHP
20 lines
506 B
PHP
<?php
|
|
|
|
function fulcrm_shoppingcart_admin_form_submit( $form, &$form_state ) {
|
|
}
|
|
|
|
function fulcrm_shoppingcart_admin_form( $form, &$form_state ) {
|
|
global $is_https;
|
|
|
|
$form[ 'title' ] = array( '#type' => 'item',
|
|
'#title' => 'fulcrm Shopping Cart Settings',
|
|
'#description' => '',
|
|
);
|
|
|
|
return $form;
|
|
}
|
|
|
|
function fulcrm_shoppingcart_admin() {
|
|
return drupal_get_form( 'fulcrm_shoppingcart_admin_form' );
|
|
}
|