Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Twitter oEmbed #18

Merged
merged 1 commit into from Jan 30, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions lib/drivers/class.serviceTwitter.php
@@ -0,0 +1,32 @@
<?php

if (!defined('__IN_SYMPHONY__')) die('<h2>Symphony Error</h2><p>You cannot directly access this file</p>');

class serviceTwitter extends ServiceDriver {

public function __construct() {
parent::__construct('Twitter', 'twitter.com');
}

public function about() {
return array(
'author' => array(
'email' => 'brian@briandrum.net',
'name' => 'Brian Drum',
'website' => 'http://briandrum.net'
),
'name' => $this->Name,
'release-date' => '2012-01-27',
'version' => '1.0'
);
}

public function getOEmbedXmlApiUrl($params) {
$url = rawurlencode($params['url']);
return 'https://api.twitter.com/1/statuses/oembed.xml?url=' . $url;
}

public function getIdTagName() {
return 'url';
}
}