newbtophp Posted August 4, 2010 Share Posted August 4, 2010 I've been coding my script to PEAR standards, however was wondering what do you recommend for the naming conventions for my templating, I'm currently doing them as how constants would be (uppercase seperated with _ for another word) like: $xtpl->assign('LATEST_FLASH_TITLE', $latest_flash_title); What do you suggest? Quote Link to comment https://forums.phpfreaks.com/topic/209745-naming-conventions-for-my-templating/ Share on other sites More sharing options...
newbtophp Posted August 4, 2010 Author Share Posted August 4, 2010 Perhaps my questions was abit vague, heres a few naming convention examples: //caps and underscore (my current one) <title>{LATEST_FLASH_TITLE}</title> //camelcase <title>{latestFlashTitle}</title> //lowercase and underscore <title>{latest_flash_title}</title> As I'm following PEARS standards, I have'nt read anywhere which states what they suggest when it comes to this, and as I'd like it to be consistant and readable to others, what do you suggest? Quote Link to comment https://forums.phpfreaks.com/topic/209745-naming-conventions-for-my-templating/#findComment-1094946 Share on other sites More sharing options...
Alex Posted August 4, 2010 Share Posted August 4, 2010 1 would probably be closest to PEAR's naming conventions. Quote Link to comment https://forums.phpfreaks.com/topic/209745-naming-conventions-for-my-templating/#findComment-1094947 Share on other sites More sharing options...
newbtophp Posted August 4, 2010 Author Share Posted August 4, 2010 1 would probably be closest to PEAR's naming conventions. Cheers! Offtopic: Im sure their was a 'Cheers' emot? - the one with the mug? or am i lost... Quote Link to comment https://forums.phpfreaks.com/topic/209745-naming-conventions-for-my-templating/#findComment-1094953 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.