Results 1 to 9 of 9

Thread: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

  1. #1
    akkimca's Avatar
    akkimca is offline Sugar Community Member
    Join Date
    Dec 2008
    Posts
    270

    Question "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    Hi,

    i dont know Edit Logic Hook is supported in sugarcrm Version 5.5.0.
    i m getting this in admin page
    Name:  Aviary sugarcrm-guidasdairy-com Picture 1.png
Views: 231
Size:  2.3 KB


    so anyone help me to solve this issues


    thanks in advance
    Regards
    ==========================
    akkimca
    Work as Sugarcrm Freelancer
    Feel free to Find me in skype. Its my pleasure to talk with you.
    ID: akshay.biztech

  2. #2
    ptemplin7 is offline Sugar Community Member
    Join Date
    Jun 2007
    Location
    Puget Sound Washington
    Posts
    380

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    I think I need more info before answering.

    Exactly where did this come from and what are you trying to do?
    Are you saying you have a logic hook and something got messed up in 5.5?

    Not I have had nothing but problems so far trying to get 5.2 to upgrade to 5.5 with all my studio customizations. In this case that might be your problem.

    Let us know some more details and I can try to help,
    PAris

  3. #3
    akkimca's Avatar
    akkimca is offline Sugar Community Member
    Join Date
    Dec 2008
    Posts
    270

    Question Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    ohhhhhh

    ok i tell u step by step

    i want to install this module in my sugarcrm version 5.5.0
    http://www.sugarforge.org/projects/editlogichooks

    after installing this module i m getting this screen in admin panel at bottom
    Name:  Aviary sugarcrm-com Picture 1.png
Views: 221
Size:  2.2 KB

    so pls help
    Regards
    ==========================
    akkimca
    Work as Sugarcrm Freelancer
    Feel free to Find me in skype. Its my pleasure to talk with you.
    ID: akshay.biztech

  4. #4
    ptemplin7 is offline Sugar Community Member
    Join Date
    Jun 2007
    Location
    Puget Sound Washington
    Posts
    380

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    May be something changed in 5.5 that broke this module. Have you tried the forums and emailing the developer to make sure its 5.5 compatible?

    Hadn't seen this little module. May try it myself.
    For creating logic hooks there is no reason you can't do this by hand as well. There are very good instruction int he Wiki and on the developers site. In fact you can copy the examples and make minor editing and use as is. (of course less the code you want for the hook!)

    Will let you know if I have problems as well.
    Paris

  5. #5
    ptemplin7 is offline Sugar Community Member
    Join Date
    Jun 2007
    Location
    Puget Sound Washington
    Posts
    380

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    Yep getting the same issue. Wonder if its because I already have some logic hooks in play. Will post to his forum and send an email. Will let you know what I find out.

    thanks PAris

  6. #6
    mvngti is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    South Africa
    Posts
    510

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    The layout for the admin menus changed in 5.2 and my module has 5.2 hardcoded in the code to cater for it.

    Find my admin menu extension in custom/modules/Adminitration/Ext/Administration and custom/Extension/modules/Administration/Ext/Administration and change 5.2 to 5.5

    M
    --


    Marnus van Niekerk

    There are only 10 types of people in the world
    those who can read binary and those who don't

    Modules:
    CE Teams - Upgrade safe teams module for Community Edition
    FieldACL - Field Level Access Control for Community Edition
    EditLogicHooks - Create and edit Logic Hooks from the Admin GUI
    FlexibleChartDashlet - Display any data in a Dashlet Chart
    DocumentThumbnails - Thumbnails for Documents module

    Many questions can be answered by reading the Developers Manual

  7. #7
    OBX
    OBX is offline Member
    Join Date
    Oct 2009
    Posts
    9

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    Quote Originally Posted by mvngti View Post
    The layout for the admin menus changed in 5.2 and my module has 5.2 hardcoded in the code to cater for it.

    Find my admin menu extension in custom/modules/Adminitration/Ext/Administration and custom/Extension/modules/Administration/Ext/Administration and change 5.2 to 5.5

    M
    Hi,

    I just downloaded this also and am trying to install. I've updated both the administration.ext.php and elh.php to 5.5 and am experiencing the same issue. Is there anything I'm missing?

    Thanks!

  8. #8
    ptemplin7 is offline Sugar Community Member
    Join Date
    Jun 2007
    Location
    Puget Sound Washington
    Posts
    380

    Cool Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    Tried several things still not working. BTW The same author has a teams module I was testing. This edit does work for that. Still getting that funny stuff on the screen with dead links.
    Emailing the author again,
    Paris
    Paris Templin, CEO

    Templin Computing LLC- Washington State based IT and Onlne Backup Specialiosts. We specialize in providing CRM and backup solutions to small and medium businesses.

    http://www.templincomputing.net

  9. #9
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: "Edit Logic Hook" plug-ins in Version 5.5.0 ???

    Ther are only some simple layout changes in the building of admin menus in version 5.5.

    Just change the module elhAdmin.menu.php
    in the package to

    PHP Code:
    <?php
    $admin_option_defs 
    = array();
    if (
    $sugar_config['sugar_version'] = 5.2)
        
    $admin_option_defs['Administration']['elhAdmin'] = array(
          
    'themes/default/images/Repair''LBL_ELH_ADMIN''LBL_ELH_ADMIN_DESCRIPTION''./index.php?module=Administration&action=editLogicHooks'
         
    );
    else if (
    $sugar_config['sugar_version'] >= 5.5)
        
    $admin_option_defs['Administration']['elhAdmin'] = array(
          
    'Repair''LBL_ELH_ADMIN''LBL_ELH_ADMIN_DESCRIPTION''./index.php?module=Administration&action=editLogicHooks'
         
    );
    else
        
    $admin_option_defs['elhAdmin'] = array(
          
    'themes/default/images/Repair''LBL_ELH_ADMIN''LBL_ELH_ADMIN_DESCRIPTION''./index.php?module=Administration&action=editLogicHooks'
         
    );
    if (
    $sugar_config['sugar_version'] >= 5.2)
     
    $admin_group_header[] = array('ELH_ADMIN_TITLE','',false,$admin_option_defs,'ELH_ADMIN_DESC');
    else
     
    $admin_group_header[] = array('ELH_ADMIN_TITLE','',false,array('Administration' => $admin_option_defs),'ELH_ADMIN_DESC');
    ?>
    Last edited by kuske; 2010-02-22 at 06:58 AM.
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Cancel an edit from a logic hook
    By pauloalexandrino in forum Developer Help
    Replies: 21
    Last Post: 2012-04-21, 03:05 AM
  2. Replies: 3
    Last Post: 2009-08-15, 03:00 AM
  3. Logic Hook Depends Create or Edit
    By Niggy in forum Developer Help
    Replies: 5
    Last Post: 2009-08-07, 08:23 AM
  4. Logic hook for a new module
    By AditiRao in forum Developer Help
    Replies: 2
    Last Post: 2009-04-14, 06:31 AM
  5. logic hook for a new module?????
    By amrutha in forum Developer Help
    Replies: 3
    Last Post: 2009-04-13, 06:39 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
  •