Archive by Author
OrangeHRM Used For Recruiting and Managing Volunteers Utilized for FIFA 2010 Fan Fests
The soccer world cup is scheduled to take place in South Africa from the 11th of June to the 11th of July. While in contact with James Abrahams a member of our community from Johannesburg South Africa we came to know OrangeHRM being used to recruit and manage the volunteers for the Fan Fests during FIFA 2010.
James was delighted to see a product of this nature, he said “Any spreadsheet or other dbase would have sufficed but OrangeHRM is neatly packaged (segmented like an orange).
It’s also very user-friendly and from an HR point of view, keeps the information safe like cells in the segments, as an orange should.
We are overjoyed to see OrangeHRM being used to assist an event so huge.
Achievements like this will help us drive closer and closer to becoming “The World’s Most Used HR System.”
Posted on 26 July '10 by admin, under Open Source. No Comments.
Five common PHP design patterns
Hi All
I hope this article will help you guys a lot with some basic stuff we could use in designing applications or rather you do re-factoring in your code.
Main design pattens discussed in this article are listed below
- The factory pattern
- The singleton pattern
- The observer pattern
- The chain-of-command pattern
- The strategy pattern
Posted on 24 December '09 by admin, under Software Engineering. No Comments.
Get All keywords in Adword v200909 in PHP
I hope this will help you guys when working with adword new API. I just completed this function and thought of sharing it for you all. I couldn’t find any PHP code in the net to do the same.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | class GetAllKeywordsExample { static function main($keywords_input, $match_type) { $return_array = array(); try { // Get AdWordsUser from credentials in "../auth.ini" // relative to the AdWordsUser.php file's directory. $user = new AdWordsUser(); // Log SOAP XML request and response. $user->LogDefaults(); // Get the TargetingIdeaService. $keywordService = $user->GetTargetingIdeaService(); $keyword = new Keyword(); $keyword->text = $keywords_input; $keyword->matchType = $match_type; $keyword_array = array($keyword); $relatedToKeywordSearchParameter = new RelatedToKeywordSearchParameter($keyword_array); $targetingIdeaSelector = new TargetingIdeaSelector(); $targetingIdeaSelector->searchParameters = array($relatedToKeywordSearchParameter); $targetingIdeaSelector->ideaType = 'KEYWORD'; $targetingIdeaSelector->requestType = 'IDEAS'; $targetingIdeaSelector->paging = new Paging(0,800); // Get all Keywords. $keywordPage = $keywordService->get($targetingIdeaSelector); // Prepare keyword array. if(isset($keywordPage->entries)) { foreach ($keywordPage->entries as $keyword_entry) { foreach($keyword_entry as $keyword_entry_array){ foreach ($keyword_entry_array as $keyword){ if($keyword->key == 'KEYWORD'){ $keyword_value = $keyword->value; if($keyword_value->value->matchType == $match_type){ $return_array[] = array( 'keyword'=>$keyword_value->value->text ); } } } } } } else { throw new Exception("ERROR",0); } } catch (Exception $e) { $return_array[] = array( 'keyword'=>$e->getMessage()); } return $return_array; } } } |
Posted on 3 November '09 by admin, under PHP. No Comments.
My 2nd Facebook application is online
I have released my second Facebook application very recently. This is an event handling application for netevents.be
Posted on 27 October '09 by admin, under PHP. No Comments.
Group for Sri Lankan Drupallers
Welcome all drupal users in Sri Lanka!
We all love drupal and Sri Lankan Drupallers is the place to discuss learn and share knowledge about drupal. Please participate to make a lively drupal group right here in Sri Lanka
Posted on 22 April '08 by admin, under PHP. No Comments.
Hi today is the FIRST DAY of this Blog
Hi Everyone!
Today 15, April 2008, the first day of this BLOG and I hope you all will be able to get more information what you are looking for in Web Designing and Developments. All your comments and suggestions are warmly welcome.
Thank you for visiting
priya
Posted on 15 April '08 by admin, under Uncategorized. No Comments.




