ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/facebook/trunk/facebookapi_php5_restlib.php
(Generate patch)

Comparing facebook/trunk/facebookapi_php5_restlib.php (file contents):
Revision 950 by douglas, 2007-09-29T14:02:03-07:00 vs.
Revision 951 by douglas, 2007-10-10T16:50:56-07:00

# Line 180 | Line 180 | function toggleDisplay(id, type) {
180              'image_4_link' => $image_4_link));
181    }
182  
183 +  public function feed_publishTemplatizedAction($actor_id, $title_template, $title_data,
184 +                                                $body_template, $body_data, $body_general,
185 +                                                $image_1=null, $image_1_link=null,
186 +                                                $image_2=null, $image_2_link=null,
187 +                                                $image_3=null, $image_3_link=null,
188 +                                                $image_4=null, $image_4_link=null,
189 +                                                $target_ids=null) {
190 +    return $this->call_method('facebook.feed.publishTemplatizedAction',
191 +      array('actor_id' => $actor_id,
192 +            'title_template' => $title_template,
193 +            'title_data' => $title_data,
194 +            'body_template' => $body_template,
195 +            'body_data' => $body_data,
196 +            'body_general' => $body_general,
197 +            'image_1' => $image_1,
198 +            'image_1_link' => $image_1_link,
199 +            'image_2' => $image_2,
200 +            'image_2_link' => $image_2_link,
201 +            'image_3' => $image_3,
202 +            'image_3_link' => $image_3_link,
203 +            'image_4' => $image_4,
204 +            'image_4_link' => $image_4_link
205 +            'target_ids' => $target_ids));
206 +  }
207 +
208    /**
209     * Returns whether or not pairs of users are friends.
210     * Note that the Facebook friend relationship is symmetric.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines