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.
18 lines
482 B
PHTML
18 lines
482 B
PHTML
9 years ago
|
<?php
|
||
|
|
||
|
function fulcrm_webhook_user_admin_form_submit( $form, &$form_state ) {
|
||
|
}
|
||
|
|
||
|
function fulcrm_webhook_user_admin_form( $form, &$form_state ) {
|
||
|
$form[ 'title' ] = array( '#type' => 'item',
|
||
|
'#title' => 'fulcrm user webhook Settings',
|
||
|
'#description' => '',
|
||
|
);
|
||
|
|
||
|
return $form;
|
||
|
}
|
||
|
|
||
|
function fulcrm_webhook_user_admin() {
|
||
|
return drupal_get_form( 'fulcrm_webhook_user_admin_form' );
|
||
|
}
|