CodeGen_MySQL_Plugin
[ class tree: CodeGen_MySQL_Plugin ] [ index: CodeGen_MySQL_Plugin ] [ all elements ]

Source for file Cli.php

Documentation is available at Cli.php

  1. <?php
  2.  
  3. /**
  4. * Console script to generate MySQL plugins from command line
  5. *
  6. @author Hartmut Holzgraefe <hartmut@php.net>
  7. @version $Id: mysql-plugin-gen,v 1.2 2006/02/17 11:11:37 hholzgra Exp $
  8. */
  9.  
  10.  
  11. // includes
  12. require_once "CodeGen/Command.php";
  13.  
  14. require_once "CodeGen/MySQL/Plugin/Extension.php";
  15. require_once "CodeGen/MySQL/Plugin/ExtensionParser.php";
  16. #require_once "CodeGen/Element.php";
  17.  
  18. // create extension object
  19. $extension = new CodeGen_MySQL_Plugin_Extension;
  20.  
  21. $command = new CodeGen_Command($extension"mysql-plugin-gen");
  22.  
  23. $parser = new CodeGen_MySQL_Plugin_ExtensionParser($extension);
  24. $command->execute($parser);
  25.  
  26. ?>

Documentation generated on Mon, 11 Mar 2019 15:29:07 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.