How to create a relationship using module loader?

I get the error "Manifest file must specify the package type" when I use the following manifest.

$manifest = array (
0 =>
array (
'acceptable_sugar_versions' =>
array (
0 => '9.0.3',
),
),
1 =>
array (
'acceptable_sugar_flavors' =>
array (
0 => 'PRO',
),
),
'readme' => '',
'key' => 'JCCC',
'author' => 'JCCC',
'description' => '',
'icon' => '',
'is_uninstallable' => true,
'name' => 'Courses',
'published_date' => '2020-08-10',
'type' => 'module',
'version' => 1379709849,
'remove_tables' => 'prompt',
);

$installdefs = array(
'relationships' => array(


array(
'meta_data' => '<basepath>/SugarModules/relationships/relationships/accounts_contacts_1MetaData.php'
)
);

Parents
  • Thank you for everyone's help.  I was missing the <?php tags.  The arrays in the manifest were off.  Also I had too many directories called relationships. Below is correct.

    <?php
    $manifest = array (
    0 => array (
    'acceptable_sugar_versions' => array (
    0 => '9.0.3',
    ),
    ),
    1 => array (
    'acceptable_sugar_flavors' => array (
    0 => 'PRO',
    ),
    ),
    'readme' => '',
    'key' => 'JCCC',
    'author' => 'JCCC',
    'description' => '',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'Courses',
    'published_date' => '2020-08-10',
    'type' => 'module',
    'version' => 1379709849,
    'remove_tables' => 'prompt',
    );

    $installdefs = array(
    'relationships' => array(
    array(
    'meta_data' => '<basepath>/SugarModules/relationships/accounts_contacts_1MetaData.php'
    )
    )
    );
    ?>

Reply
  • Thank you for everyone's help.  I was missing the <?php tags.  The arrays in the manifest were off.  Also I had too many directories called relationships. Below is correct.

    <?php
    $manifest = array (
    0 => array (
    'acceptable_sugar_versions' => array (
    0 => '9.0.3',
    ),
    ),
    1 => array (
    'acceptable_sugar_flavors' => array (
    0 => 'PRO',
    ),
    ),
    'readme' => '',
    'key' => 'JCCC',
    'author' => 'JCCC',
    'description' => '',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'Courses',
    'published_date' => '2020-08-10',
    'type' => 'module',
    'version' => 1379709849,
    'remove_tables' => 'prompt',
    );

    $installdefs = array(
    'relationships' => array(
    array(
    'meta_data' => '<basepath>/SugarModules/relationships/accounts_contacts_1MetaData.php'
    )
    )
    );
    ?>

Children
No Data