<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Knowledge - Transfers</title> <atom:link href="http://www.knowledge-transfers.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.knowledge-transfers.com</link> <description>Transfer knowledge, En-reach it.</description> <lastBuildDate>Sun, 03 Jul 2011 16:12:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>Some useful UNIX command</title><link>http://www.knowledge-transfers.com/it/some-useful-unix-command/</link> <comments>http://www.knowledge-transfers.com/it/some-useful-unix-command/#comments</comments> <pubDate>Sun, 03 Jul 2011 16:12:21 +0000</pubDate> <dc:creator>NeiL</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[useful unix command]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5837</guid> <description><![CDATA[<p>Change mode :<br
/> Make folder and its content writable : chmode -Rf 777 foldername<br
/> to view the current directory: pwd</p><p>listing with all attributes : ls  -l</p><p>to view hidden files :    ls  -a</p><p>to list all the ext file:    ls  -ltr *.ext</p><p>to change owner :     chown &#60;owner name&#62; [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/some-useful-unix-command/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Vardefs.php in SugarCRM</title><link>http://www.knowledge-transfers.com/it/vardefs-php-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/vardefs-php-in-sugarcrm/#comments</comments> <pubDate>Thu, 16 Jun 2011 19:13:03 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[CRM]]></category> <category><![CDATA[vardefs]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5831</guid> <description><![CDATA[<p>The vardefs are used to provide the Sugar application with information about the SugarBeans.</p> Each module that has a SugarBean file will have a vardefs.php file located in it. This file specifies the fields for that SugarBean. For the Contact bean, the vardefs will be located in sugarcrm/modules/Contacts/vardefs.php. Vardef files create an array called &#8220;$dictionary&#8221; [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/vardefs-php-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Populate class variables from post values in sugarcrm</title><link>http://www.knowledge-transfers.com/it/populate-class-variables-from-post-values-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/populate-class-variables-from-post-values-in-sugarcrm/#comments</comments> <pubDate>Thu, 16 Jun 2011 18:58:31 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[CRM]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5829</guid> <description><![CDATA[require_once(&#8216;include/formbase.php&#8217;); $focus = populateFromPost(&#8221;, $focus); $focus-&#62;save; 1st parameter is for prefix, and 2nd is for class object.]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/populate-class-variables-from-post-values-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Upgrade self customization in Sugarcrm</title><link>http://www.knowledge-transfers.com/it/upgrade-self-customization-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/upgrade-self-customization-in-sugarcrm/#comments</comments> <pubDate>Thu, 16 Jun 2011 18:48:07 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[Safe]]></category> <category><![CDATA[SugarCRM]]></category> <category><![CDATA[Upgrade]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5825</guid> <description><![CDATA[Upgrade self customization is such customization in which if we upgrade Sugar version our customized part does not need any change or modification. To overcome after up gradation problems we need to customize all our modules and other codes into custom folder. If you directly have id use retrieve functionality. But if there any field value exist other [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/upgrade-self-customization-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>SugarCRM Code Review Points</title><link>http://www.knowledge-transfers.com/it/sugarcrm-code-review-points/</link> <comments>http://www.knowledge-transfers.com/it/sugarcrm-code-review-points/#comments</comments> <pubDate>Wed, 15 Jun 2011 20:12:16 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[IT, Software Services]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5823</guid> <description><![CDATA[1. Don’t write sql queries inside a page, rather write as a function of a class. 2. Do not write functions in a general page, rather write as a class function. 3. Do not require or include extra pages and do not write any extra code. If you are using copy-paste also try to remove [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/sugarcrm-code-review-points/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Use of entrypoint in SugarCRM</title><link>http://www.knowledge-transfers.com/it/use-of-entrypoint-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/use-of-entrypoint-in-sugarcrm/#comments</comments> <pubDate>Wed, 15 Jun 2011 20:01:56 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[Sugar]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5821</guid> <description><![CDATA[Entrypoint is used when a particular file is saved outside the scope of our project and we have to fire some functions (such as modification in our database/sending mail etc.) based on that file events. For that have to make changes in “include\MVC\Controller\entry_point_registry.php”. Actually file path is getting created here w.r.t a specific action. &#8216;getImage&#8217; [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/use-of-entrypoint-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Removing multiple select from search in index page in Sugarcrm</title><link>http://www.knowledge-transfers.com/it/removing-multiple-select-from-search-in-index-page-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/removing-multiple-select-from-search-in-index-page-in-sugarcrm/#comments</comments> <pubDate>Wed, 15 Jun 2011 19:59:28 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[CRM]]></category> <category><![CDATA[SugarCRM]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5819</guid> <description><![CDATA[Remove: size={{$size}} {{if $size&#62;1}} multiple=”1”{{/if}} From “include/SugarFields/Fields/Enum/SearchView.tpl”.]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/removing-multiple-select-from-search-in-index-page-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Adding new button in SugarCRM</title><link>http://www.knowledge-transfers.com/it/adding-new-button-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/adding-new-button-in-sugarcrm/#comments</comments> <pubDate>Wed, 15 Jun 2011 19:54:55 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[CRM]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5816</guid> <description><![CDATA[1. Create a new case in function smarty_function_converge_button in “include/Smarty/plugins/function.converge_button.php”. 2. Create button labels in “include/language/en_us.lang.php”. 3. In “include/TemplateHandler/TemplateHandler.php” buildTemplate function add your button name in $this-&#62;ss-&#62;assign(&#8220;built_in_buttons&#8221;, array(&#8216;CANCEL&#8217;, &#8216;DELETE&#8217;, &#8216;DUPLICATE&#8217;, &#8216;EDIT&#8217;, &#8216;FIND_DUPLICATES&#8217;, &#8216;SAVE&#8217;, &#8216;CONNECTOR&#8217;)); 4. Put the button name anywhere needed.]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/adding-new-button-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Adding subpanel in Sugarcrm</title><link>http://www.knowledge-transfers.com/it/adding-subpanel-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/adding-subpanel-in-sugarcrm/#comments</comments> <pubDate>Wed, 15 Jun 2011 19:47:40 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[SugarCRM]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5814</guid> <description><![CDATA[1. Parent module: create modules/&#60;&#62;/metadata/subpaneldefs.php. This contains &#8216;subpanel_name&#8217; =&#62; &#8216;default&#8217;, where default is the file name that have to create in modules/&#60;&#62;/metadata/subpanels/. 2. Parent module: in vardefs create relationship code and relation definition. 3. Define the relationship in cache/modules/Relationships/relationships.cache.php 4. Child module: create default.php or namespecific.php in the folder modules/&#60;&#62;/metadata/subpanels/. 5. Define (if new) widget [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/adding-subpanel-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Some important functions in SugarCRM</title><link>http://www.knowledge-transfers.com/it/some-important-functions-in-sugarcrm/</link> <comments>http://www.knowledge-transfers.com/it/some-important-functions-in-sugarcrm/#comments</comments> <pubDate>Wed, 15 Jun 2011 19:40:05 +0000</pubDate> <dc:creator>danpite</dc:creator> <category><![CDATA[IT, Software Services]]></category> <category><![CDATA[CRM]]></category><guid
isPermaLink="false">http://www.knowledge-transfers.com/?p=5810</guid> <description><![CDATA[1. $classObj-&#62;retrieve($id); Fetches all values of that $classObj. And any particular value can be accessed by writing $classObj-&#62;name. 2. $current_user-&#62;getPreference(‘datef’); Getting date format for a particular user. 3. $current_user-&#62;getPreference(‘timef’); Getting time format for a particular user. 4. from_html($text); Getting formatted values. Generally used for fetching some database values. But if you use retrieve function, no [...]]]></description> <wfw:commentRss>http://www.knowledge-transfers.com/it/some-important-functions-in-sugarcrm/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: www.knowledge-transfers.com @ 2012-02-04 15:35:41 by W3 Total Cache -->
