Admun's NUDN

admun

  • San Francisco, CA

Navigation

Navigation

Categories

The Way to Show the Item

I saw some code from NP_Print the other day about how it parses and display an item. I thought I will distill it and document a snippet of code hope other plugin developer found useful.

Here's a example how to display an item:

...
show code to get access to $blog object

  echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
\"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>";
  echo "<title>Show an item</title>\n";
  echo "</head>\n";
  echo "<body>\n";

  $plugin =& $manager->getPlugin('NP_SomePlugin');
  $template = $plugin->getOption('templatename'); 
  $query = $b->getSqlBlog(' and inumber=' . intval($itemid)); 
  $b->showUsingQuery($template, $query, '', 0, 0);

  echo "</body>\n</html>\n";

...

This code snippet required $itemid, and a template name (stored in plugin option) to work. $itemid is usually passed in from HTTP and initialized in config.php.

For a full functional example, please see NP_ShowDraft

17:53:45 on 11/04/04 by Admun - Category: Developer Notes - tags: none - print

Comments

No comments yet

Add Comments



<=   November 2009   =>
SunMonTueWedThuFriSat
1234567
891011121314
15161718192021
22232425262728
2930     

My Quick Links

Documentation

How-To & Tips

Source Code

Developers utc

Latest Comments

  • Admun says If you are running wp from a hosting environment, your system admin people can tell...
  • Dan says Hi, Im a noob and Im not sure what to input for the Database Name, for Nucleus and...
  • Admun says what version of PHP you are running? It looks like this function is...
  • Kevin says I am getting this error: Fatal error: Call to undefined function sql_table() in...
  • Admun says thx Frank, I will look into it.
  • ftruscot says admun, a bug/fix suggestion on the forum that you might want to look at:...
  • Admun says Indeed David. 8( A quick fix for now until 0.9 is out: - do a "ALTER TABLE...
  • David Geens says Dear Edmond, Your twitter plugin suffer from the twitocalyps. You should...

Most Downloads