vishnu3006

Untitled

Sep 22nd, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function send_for_translation($node) {
  2.  
  3. echo ("Hello Send To ranslation ");
  4. $nodes_id = $node->nid;
  5. print_r($nodes_id);
  6.  
  7. $content = freeway_dashboard_build_filter_query($nodes_id);
  8.  
  9. //further iterating the $content.
  10.  
  11. }
  12.  
  13. function freeway_dashboard_build_filter_query($nodes_id) {
  14.  
  15. $contents = db_query("SELECT n.*, nr.body FROM node n JOIN node_revisions nr on n.vid = nr.vid where n.nid = $nodes_id " );
  16. return $contents;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment