[ PHPXref.com ] [ Generated: Sun Jul 20 16:35:25 2008 ] [ bBlog 0.7.6 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/bblog/bBlog_plugins/ -> modifier.none.php (source)

   1  <?php
   2  
   3   function identify_modifier_none () {
   4    return array (
   5      'name'           =>'none',
   6      'type'           =>'modifier',
   7      'nicename'       =>'None',
   8      'description'    =>'Does nothing at all to your text',
   9      'authors'         =>'Eaden McKee',
  10      'licence'         =>'GPL',
  11      'help'             =>'There is not much to say here... your post will stay exactly as you type it and will not be changed'
  12    );
  13  }
  14  
  15  function smarty_modifier_none(&$string)
  16  {
  17      return $string;
  18  }
  19  
  20  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]