Genric sugar dashlet
i want to install generic dashlet which is not module specific...i googed
and searched sugar forum but i couldn't find it...everywhere they
mentioned to add manfiest.php like this one
<?php
$manifest =array(
'acceptable_sugar_flavors' => array(),
'acceptable_sugar_versions' => array(),
'author' => 'SugarCRM',
'description' => 'Installs the dashlet using the dashlets installdef',
'icon' => '',
'is_uninstallable' => true,
'name' => 'Dashlet installer example',
'published_date' => '2013-01-29 2013 13:49:58',
'type' => 'module',
'version' => '1.0',
);
$installdefs =array(
'id' => 'package_1359467398',
'dashlets' => array(
0 => array(
//The name to install the dashlet under
'name' => 'MyDashlet',
//This directory contains the dashlet files
'from' => '<basepath>/MyDashlet',
),
),
);
?>
but where should i place this file for non module specific dashlet
No comments:
Post a Comment