You are here

function _tweet_node_types in Tweet 5

Same name and namespace in other branches
  1. 5.2 tweet.module \_tweet_node_types()
  2. 6.4 tweet.module \_tweet_node_types()
  3. 6 tweet.module \_tweet_node_types()
  4. 6.2 tweet.module \_tweet_node_types()
  5. 6.3 tweet.module \_tweet_node_types()
  6. 7.4 tweet.module \_tweet_node_types()

Helper function to provide node types in the format array(TYPE => TYPE).

3 calls to _tweet_node_types()
tweet_admin in ./tweet.module
Settings page.
tweet_admin_submit in ./tweet.module
Submit handler for tweet_admin().
tweet_link in ./tweet.module
Implementation of hook_link().

File

./tweet.module, line 242
Builds links to post pages to twitter.

Code

function _tweet_node_types() {
  $a = array_keys(node_get_types());
  return array_combine($a, $a);
}