Adding new option in the action button of sugarCRM - contacts

I am fairly new to the sugar but a pro at php.
I am trying to add an option "Print" in the action button/dropdown at the Contacts list view of the sugarCRM but cannot find its code.
Any help would be highly appreciable.
Thanks,
tanay

Here's a blog post which should help:
http://developer.sugarcrm.com/2010/11/22/howto-adding-your-own-listview-action-items/

Related

Sugarcrm 8.0 custom module with rest api

Hello guys im new to sugarcrm how do i create a custom module with an api in it, from scratch?
im having trouble finding good reference with easy to follow instructions.
Any example will do. Thanks in advance to the genius devs out there.
these links should help:
Information about the REST API:
https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_8.2/Integration/Web_Services/REST_API/
How to create custom endpoints:
https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_8.2/Integration/Web_Services/REST_API/Extending_Endpoints/
Also, I would recommend asking your questions in the SugarCRM Community here: https://community.sugarcrm.com/community/developer

Block a dashlet from getting added in sugarcrm

Hy Everybody!
Does anyone knows how to block a dashlet from getting displayed in modules tab which will be displayed in "Add Sugar Dashlets" window shown below:
I am using Sugar Pro 6.4.0.
Any help will be appreciated.
Try to follow guide from here http://developers.sugarcrm.com/wordpress/2011/08/11/howto-how-to-hide-a-dashlet-from-the-add-dashlets-dialog-in-an-upgrade-safe-way/

any plugin where user modify their profile and post panel at front end?

I want to know is there any plugin(s) where user first registered as editor then create a post or modify own post.
users can manage their profile and post panel.
I have searched a lots of plugins but still not found any sufficient.
i am newbee in wordpress. and little bit knowledge about wordpress. please help me.
Thanks in advance.
There is a good tutorial HERE.
Works for me. It's not so super-easy, but if you want to create clone of that side- you need to understand it.

Where can i find the community builder mail function?

I want to have an customize email after the registration in my community builder, I want to do it in the main mailing function of community builder.
Where could I find that certain function/file?
or any Idea how to customize community builder mailing function, I want it to be in HTML based and have some pictures and graphics on it.,
Tnx for the replies.
You can have a look at the function comprofilerMail which is in the file administrator/components/com_comprofiler/comprofiler.class.php

Dynamic forms in zend?

hey, i'm stuck at a problem which is kind of similar to one that Erik asked about. I'm trying to create a dynamic form in zend and what i wanna do is that there should be a button which when clicked adds a new text box or any form element dynamically.
now the problem is that i'm new to zend framework. i'm using 1.9.7 right now. i've done some functionality like user registration and login etc but dojo and zend subform are completely alien to me. so i need your help. please guide me that where should i start and what would be the logic of this dynamic form.
regards,
furqan
These new elements should be instances of new Zend_Form_Subform to have server side validation working properly.
New subforms may be added via AJAX (see ajaxLink view helper) or to be already present on the page, but hidden with CSS+JavaScript.
I don't know a lot about zend, but if you want to do that on the client side, you can use dojo.place as described here.