Results 1 to 5 of 5

Thread: customization in sugar Pro ondemand

  1. #1
    rakeshray is offline Sugar Community Member
    Join Date
    Jun 2010
    Location
    Hyderabad (India)
    Posts
    313

    Default customization in sugar Pro ondemand

    Hi

    I have to make major customization in sugarCRM Pro application which is hosted ondemand .
    As per the conventions we can create new features by importing customizations through module loader.But i have to add few code in custom/include folder , what could be the process ...
    Any body suggest me please !!

    Thanks

  2. #2
    Andy Main is offline Junior Member
    Join Date
    Nov 2010
    Posts
    5

    Default Re: customization in sugar Pro ondemand

    Learn about crafting manifests it in the dev guide.
    Here is a quick example;

    Which will copy afile.php to /custom/afile.php

    $manifest = array (
    'acceptable_sugar_versions' =>
    array (
    '5.2.0j'
    ),
    'acceptable_sugar_flavors' =>
    array(
    'CE', 'PRO','ENT'
    ),
    'readme'=>'',
    'key'=>'',
    'author' => 'The Sugar Refinery',
    'description' => 'Updated lables to fix display problems',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'tsr_languagefix_r5.3_v1',
    'published_date' => '2010-05-27 13:15:18',
    'type' => 'module',
    'version' => 'r5.3_v1',
    'remove_tables' => 'prompt',
    );
    $installdefs = array (
    'id' => 'tsr_languagefix_r5.3_v1',
    'copy' =>
    array (
    0 =>
    array (
    'from' => '<basepath>/custom/afile.php',
    'to' => 'custom/afile.php',
    ),
    ),

  3. #3
    Andy Main is offline Junior Member
    Join Date
    Nov 2010
    Posts
    5

    Default Re: customization in sugar Pro ondemand

    Learn about crafting manifests it in the dev guide.
    Here is a quick example;

    Which will copy afile.php to /custom/afile.php

    $manifest = array (
    'acceptable_sugar_versions' =>
    array (
    '5.2.0j'
    ),
    'acceptable_sugar_flavors' =>
    array(
    'CE', 'PRO','ENT'
    ),
    'readme'=>'',
    'key'=>'',
    'author' => 'The Sugar Refinery',
    'description' => 'Updated lables to fix display problems',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'tsr_languagefix_r5.3_v1',
    'published_date' => '2010-05-27 13:15:18',
    'type' => 'module',
    'version' => 'r5.3_v1',
    'remove_tables' => 'prompt',
    );
    $installdefs = array (
    'id' => 'tsr_languagefix_r5.3_v1',
    'copy' =>
    array (
    0 =>
    array (
    'from' => '<basepath>/custom/afile.php',
    'to' => 'custom/afile.php',
    ),
    ),

  4. #4
    AndyMain is offline Sugar Community Member
    Join Date
    Apr 2009
    Location
    Edinburgh
    Posts
    26

    Default Re: customization in sugar Pro ondemand

    Learn about crafting manifests it in the dev guide.
    Here is a quick example;

    Which will copy afile.php to /custom/afile.php

    $manifest = array (
    'acceptable_sugar_versions' =>
    array (
    '5.2.0j'
    ),
    'acceptable_sugar_flavors' =>
    array(
    'CE', 'PRO','ENT'
    ),
    'readme'=>'',
    'key'=>'',
    'author' => 'The Sugar Refinery',
    'description' => 'Updated lables to fix display problems',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'tsr_languagefix_r5.3_v1',
    'published_date' => '2010-05-27 13:15:18',
    'type' => 'module',
    'version' => 'r5.3_v1',
    'remove_tables' => 'prompt',
    );
    $installdefs = array (
    'id' => 'tsr_languagefix_r5.3_v1',
    'copy' =>
    array (
    0 =>
    array (
    'from' => '<basepath>/custom/afile.php',
    'to' => 'custom/afile.php',
    ),
    ),
    Andy Main

    T H E S U G A R R E F I N E R Y
    :: SugarCrm Customisation and Integration Services ::

    www.thesugarrefinery.com
    www.andymain.co.uk

    phone: +44(0)1313000434
    mobile: +44(0)7725013102

  5. #5
    rakeshray is offline Sugar Community Member
    Join Date
    Jun 2010
    Location
    Hyderabad (India)
    Posts
    313

    Default Re: customization in sugar Pro ondemand

    Thanks Mr. AndyMain !
    i want to know one thing , where this manifest file will be located .
    It will be inside the instance which is already hosted or in the module which will be imported.
    I mean i want to know its location .
    Give any idea please !

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Sugar ondemand Pro translation
    By sebek in forum General Discussion
    Replies: 2
    Last Post: 2011-10-13, 01:16 PM
  2. Sugar OnDemand Speed
    By BobH in forum Help
    Replies: 2
    Last Post: 2007-07-29, 05:19 AM
  3. how to deploy an ondemand sugar site
    By xu_zhiy in forum Developer Help
    Replies: 3
    Last Post: 2006-01-09, 03:17 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •