This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * | |
| * Détection Doublons par Email | |
| * | |
| */ | |
| searchEmail = input.email; | |
| duplicates = zoho.crm.searchRecords("Contacts", "(Email:equals:" + searchEmail + ")"); | |
| if(duplicates.size() > 1) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string standalone.el_get_records_custom_view(Int cvid,String slug_module) | |
| { | |
| /** | |
| * Function for Search records for a specific custom view | |
| * | |
| * @param string slug_module Module API Name | |
| * @param INT cvid Id of custom view | |
| * | |
| * @return array | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string standalone.el_add_tag_to_record(Int record_id,String module_slug,String tag_label) | |
| { | |
| /** | |
| * Add tags to a specific records in a specific module | |
| * | |
| * @param INT record_id ID Zoho Record ID | |
| * @param string module_slug Zoho Module name (Leads ...) | |
| * @param string tag_label Tag label | |
| * | |
| * @return string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fr: | |
| THEME_MYTHEME_DASHBOARD_TITLE: "Dashboard" | |
| THEME_MYTHEME_GENERAL: "General" | |
| THEME_MYTHEME_STATUS: "Status" | |
| THEME_MYTHEME_SETTINGS: "Settings" | |
| THEME_MYTHEME_SUPPORT: "Support" | |
| THEME_MYTHEME_CREDITS: "Credits" | |
| THEME_MYTHEME_DASHBOARD: "Dashboard" | |
| THEME_MYTHEME_GOOGLE: "Google" | |
| THEME_MYTHEME_WEBMASTERS: "Webmasters" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # PHP CodeSniffer pre-commit hook for git | |
| # | |
| # @author Soenke Ruempler <[email protected]> | |
| # @author Sebastian Kaspari <[email protected]> | |
| # | |
| # see the README | |
| PHPCS_BIN=/usr/local/bin/phpcs | |
| PHPCS_CODING_STANDARD=PSR2 |