Skip to content

Instantly share code, notes, and snippets.

@tzi
Created December 29, 2011 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzi/1533398 to your computer and use it in GitHub Desktop.
Save tzi/1533398 to your computer and use it in GitHub Desktop.
SugarCRM module miscellaneous snippets
<?php
$config = array (
'assignable' => true,
'acl' => true,
'has_tab' => true,
'studio' => true,
'audit' => true,
'templates' =>
// INHERITANCE
array (
'basic' => 1,
'company' => 1,
),
'label' => 'Activité',
'importable' => false,
);
?>
<?php
$mod_strings = array (
'LBL_MY_STRING_FIELD' => 'Mon Label',
);
?>
<?php
$vardefs = array (
'fields' => array (
// LIST FIELDS DEFINITION
),
'relationships' => array (
),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment