Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@ The profile image of the person who created the tweet, using the HTTP protocol.

The profile image of the person who created the tweet, using the HTTPS protocol.

`{profile_image_url:mini}`, `{profile_image_url:bigger}`, `{profile_image_url:original}`

The standard profile image is 48px by 48px. You can also use other size variations:

* mini: 24px by 24px
* bigger: 73px by 73px
* original: [the dimensions of the originally uploaded image]

Those same tag extensions will also work on the secure and retweeted image variants, e.g. `{image:bigger}`, `{retweeter:profile_image_url_https:mini}`

**Retweets**: `{if retweeted}`, `{retweeter}`

If the tweet is a retweet, the _original_ tweet will be shown. Use `{if retweet}` to determine if the tweet being shown is a retweet. `{retweeter}` will then include the name of the person that retweeted the tweet.
Expand Down
12 changes: 12 additions & 0 deletions system/expressionengine/third_party/twitter/addon.setup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

return array(
'author' => 'Derek Jones, Bryant Hughes, Bryan Burgers',
'author_url' => 'http://clickrain.com',
'name' => 'Twitter',
'description' => 'Twitter plugin',
'version' => '1.9.0',
'namespace' => 'Twitter',
'settings_exist' => TRUE,
'docs_url' => 'https://github.com/tobystokes/EE_Twitter',
);
4 changes: 0 additions & 4 deletions system/expressionengine/third_party/twitter/css/twitter.css

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
'twitter_settings_generate' => 'Generate new Request Token',
'twitter_settings_erase' => 'Erase Authentication Settings',

'settings' => 'Settings',
'btn_save_form' => 'Save settings',
'btn_saving' => 'Saving',

'' => ''
);
Loading