Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Object-oriented programming is a programming paradigm using "objects": data structures consisting of data fields and methods together with their interactions.

learn more… | top users | synonyms (5)

0
votes
1answer
67 views

Using PHP classes to output html

I asked the same question earlier and it got down voted and I have no idea why. I'm building a class that outputs a news feed, but it's a very structured html that I'm going to use a lot on the site ...
0
votes
1answer
176 views

Unable to call javascript class method from FB.api response block

I have defined two classes in javascript as follows. function ParentClass(){ this.one = function(){ alert('inside one of parent'); }; this.two = function(){ alert('inside ...
2
votes
0answers
67 views

How to fix “Application has too many object types” error on Open Graph Dashboard?

I am developing a web application integrated into facebook's open graph, and had initially created many objects (20 or 30), representing each item type on the application, I quickly found that to the ...
1
vote
1answer
542 views

OOP PHP with FB Graph API

I am creating a Student object using OOP in PHP via the Facebook Graph API. My problem is that not all users share the same amount of data on FB so if a particular user doesn't list certain variables ...
0
votes
2answers
238 views

class gets unset when including smarty and facebook php

I don't understand this: I use the __autoload feature in php and this works: include_once '../sys/core/init.inc.php'; $Intro = new Intro(); echo $Intro->ip(); exit(); init.inc.php loads ...
3
votes
2answers
1k views

Context on facebook api callback?

Is there a way to pass context in a javascript facebook sdk api callback? Here's a simple exemple. Now this won't work because the variable 'this.name' in my callback function would be undefined, ...
32
votes
2answers
7k views

What does it mean to start a PHP function with an ampersand?

I'm using the Facebook library with this code in it: class FacebookRestClient { ... public function &users_hasAppPermission($ext_perm, $uid=null) { return ...