Creative, Informative and Entertaining Stuff for everyone

Wednesday May 23rd 2012

Categories

Archives

Calender

December 2011
S M T W T F S
« Nov   Feb »
 123
45678910
11121314151617
18192021222324
25262728293031

Archive for December, 2011

configure database using propel

$ ./symfony configure:database --name=propel --class=sfPropelDatabase "mysql:host=localhost;dbname=dbname" username userpassword

How to get the allowed option list in drupal theme template or view file

If you want to get the option list of the content type that you have created , then you can get the list as follows: $content_field = content_fields('whatever_the_field_name_is'); $allowed_values = content_allowed_values($content_field); So the $allowed_values will give you the array of the option list with the key value [...]

How to add select option in drupal while creating content type

Whenever you create any content type in drupal ( version 6 and above) and you required a filed of type select list, then you can provide the allowed values of the select option in two ways CASE 1 : option 1 option 2 option 3 CASE 2 : 1|option 1 2|option 2 3|option 3 Each new option has to be entered on a new line So enternally [...]

Replace multiple space with single space in PHP

If you want to replace multiple space with single space from a string you can use preg_replace function for this. Refer the below example preg_replace("!\s+!"," ",$yourstring); For example $yourstring = "This contain space"; $modifiedString = preg_replace("!\s+!"," ",$yourstring); echo $modifiedString; // This contain space // [...]

How to get symfony project base url in template file

To get the base url of your symfony project , you can use the below in your template file. $sf_request->getUriPrefix().$sf_request->getRelativeUrlRoot() And to get your current app URL. $sf_request->getUriPrefix().$sf_request->getRelativeUrlRoot().$sf_request->getPathInfoPrefix();