Multiple inheritance in php
Finally after long long waiting there is better way we can perform multiple inheritance in PHP5. hang on hang on. Its call “Traits”. Trait is similar to other classes, It is not possible to instantiate a Trait on its own. If you want to do some more study you can refer php.net documentation. class BaseClass [...]
Drupal7: How to create sub-theme using existing theme.
Once again i came up with very basic stuff about the drupal 7. How to create sub-theme using existing theme in drupal 7 or you can say create sub theme in 4 quick and easy steps. Lets not wait for those steps. 4 quick and easy steps: Step 1: Lets say download the populer them [...]
How to get facebook page news feeds
Its been a long i have not shared any information with you, so i just want to share new and hot stuff on hot to get facebook page news feeds. The reason behind writing this blog is earlier the facebook offline_access was working and it was very easy to manipulate but as this is been [...]
PHP design patterns
In this blog we are going to lern about PHP design patterns/ web design patterns. what is design patterns, how to use them, where to use them. Which design pattern is good in what scenario. what is design patterns? Design pattern is a general reusable solution which is used to resolved a commonly occurring problem [...]
how to find user likes facebook page like
If you want to know how to find user likes facebook page like your page or not. After few experiments i found this working code that i want to share with you. $FB_PAGE_ID = ”; //assign facebook page id. $facebook = new Facebook(array( ‘appId’ => APP_ID, ‘secret’ => SEC_KEY, ‘cookie’ => true, )); $user = [...]
how to create facebook custom invite plugin
Facebook invite plugin is deprecated code, you never know when it will stop working. So i decided to develop a code that ill perform same activity. how to create Facebook custom invite plugin that post the custom message to friends wall. was little difficult until i found facebook friends api that allows us to get [...]
how to show oauth dialog box in place of popup in facebook
Being new to facebook it become little difficult to implement functionality like how to show oauth dialog box in place of popup in facebook . If you wish to show the oauth javascript overlay popup which is facebook default style. Use following code to achieve what you want. Note : Oh yes, replace “WELCOME_APP_ID” with [...]
How to add the Facebook Like Button
yet another good chance for me write and share little experience with all of you on How to add the Facebook Like Button on page. Basically there are two different ways we can add facebook like button on page. The second important part is callback fuction for like. 1.I have already shared the details on [...]
how to add magento products to google base
Its been log i have done this but forgot to share with all visitors. This article will guide you on how to add magento products to google base. This works only for first time but if you wish to submit automatically then yes its possible. Step 1: Magento Google Base Feed Account Configuration go to [...]