- engagement.sql
- config.php
- show_code.php
Installing the Engagement Code
- collect_old_leader_timeline.php
- collect_new_leader_timeline.php
- collect_old_leader_search.php
- collect_new_leader_search.php
Collecting Leader Account Tweets
- collect_leader_account_profiles.php
- collect_mentioned_account_profiles.php
- collect_retweeted_account_profiles.php
- collect_account_profiles.php
- update_all_account_profiles.php
- purge_user_accounts.php
- update_user_tags.php
Collecting Account Profiles
- /report/index.php
- /report/page_top.html
- /report/page_bottom.html
- /report/menu.html
- /report/menu.css
- /report/engagement_account.php
- get_user_profile.php
- /report/display_users.php
- display_lib.php
- /report/user_template.html
- /report/user.css
- get_last_tweet.php
- /report/display_tweets.php
- /report/tweet_template.html
- /report/tweets.css
Report System
- /report/leader_tweets.php
- /report/select_date.php
- get_leader_tweets.php
- /report/all_tweets.php
- get_all_tweets.php
- /report/popular_leader_tweets.php
- get_popular_leader_tweets.php
- /report/popular_nonleader_tweets.php
- get_popular_nonleader_tweets.php
- /report/tweet_timing.php
- get_tweet_days.php
- get_tweet_hours.php
- /report/search_tweets.php
Tweet Reports
- /report/search_users.php
- get_search_users.php
- /report/user_profile.php
- /report/user_profile.css
User Reports
- /report/leader_mentions.php
- get_leader_mentions.php
- /report/all_mentions.php
- get_all_mentions.php
- /report/mentioners.php
- get_mentioners.php
- /report/mention_timing.php
- get_mention_days.php
- get_mention_hours.php
Mention Reports
- /report/leader_retweets.php
- get_leader_retweets.php
- /report/all_retweets.php
- get_all_retweets.php
- /report/retweeters.php
- get_retweeters.php
- /report/retweet_timing.php
- get_retweet_days.php
- get_retweet_hours.php
Retweet Reports
- /report/leader_tags.php
- get_leader_tags.php
- /report/all_tags.php
- get_all_tags.php
- /report/user_tags.php
- /report/select_next_prev.php
- get_user_tags.php
Tag Reports
- collect_old_engagement_timeline.php
- collect_new_engagement_timeline.php
- collect_old_engagement_search.php
- collect_new_engagement_search.php
- /report/engagement_tweets.php
- get_engagement_tweets.php
- /report/popular_engagement_tweets.php
- get_popular_engagement_tweets.php
- /report/engagement_mentioners.php
- get_engagement_mentioners.php
- /report/engagement_retweeters.php
- get_engagement_retweeters.php
- /report/tweet_conversation.php
- get_tweet_conversation.php
Collecting Engagement Tweets
- collect_old_dms_sent.php
- collect_new_dms_sent.php
- collect_old_dms_received.php
- collect_new_dms_received.php
- /report/all_dms.php
- get_all_dms.php
- /report/display_dms.php
- /report/dm_template.html
- /report/dm.css
- /report/search_dms.php
- /report/dm_conversation.php
- get_dm_conversation.php
Collecting Engagement DMs
- autotweet_lib.php
- post_scheduled_tweets.php
- update_recurring_tweets.php
- post_recurring_tweets.php
- collect_rss_feeds.php
Automated Tweets and Retweets
- collect_engagement_friends.php
- collect_engagement_friends_profiles.php
- collect_user_profiles.php
- /report/new_friends.php
- get_new_friends.php
- /report/new_unfriends.php
- get_new_unfriends.php
- /report/friends_not_tweeting.php
- get_friends_not_tweeting.php
- /report/protected_friends.php
- get_protected_friends.php
- /report/search_friends.php
- get_search_friends.php
- /report/suggested_friends_tweeting_about_others.php
- get_suggested_friends_tweeting_about_others.php
- /report/suggested_friends_tweeting_about_engagement_account.php
- get_suggested_friends_tweeting_about_engagement_account.php
- /report/suggested_friends_engagement_account_tweets_about.php
- get_suggested_friends_engagement_account_tweets_about.php
Collecting Engagement Friends
- collect_engagement_followers.php
- collect_engagement_followers_profiles.php
- /report/new_followers.php
- get_new_followers.php
- /report/new_unfollowers.php
- get_new_unfollowers.php
- /report/search_followers.php
- get_search_followers.php
- post_new_follow_tweets.php
- post_new_follow_dms.php
Collecting Engagement Followers
- /report/mutual_follows.php
- get_mutual_follows.php
- /report/friends_not_followers.php
- get_friends_not_followers.php
- /report/followers_not_friends.php
- get_followers_not_friends.php
Mutual Follow Relationships
- cronjob.txt
Scheduling API Code
- license.txt
Open Source Code License
Free open source code for Twitter API Engagement Programming
get_all_tags.php
<?php // Copyright (c) 2013 Adam Green. All rights reserved. // See http://140dev.com/download/license.txt for licensing of this code. function get_all_tags($where,$start,$results_per_page) { global $db; $query = "SELECT COUNT( * ) AS cnt, tag FROM tweet_tags WHERE 1 $where GROUP BY tweet_tags.tag ORDER BY cnt DESC, tag ASC LIMIT $start, $results_per_page"; return $db->select_array($query); } ?>
-
Related Scripts: Tags
Thanks, @140dev for the sweet open source API code.