Overview

Packages

  • None
  • Pastie

Classes

  • PasteForm
  • Pastie
  • Pastie_Driver
  • Pastie_Driver_Sql
  • Overview
  • Package
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * Pastie Base Class.
 4:  *
 5:  * Copyright 2007-2012 Horde LLC (http://www.horde.org/)
 6:  *
 7:  * See the enclosed file COPYING for license information (GPL). If you
 8:  * did not receive this file, see http://www.horde.org/licenses/gpl.
 9:  *
10:  * @author  Your Name <you@example.com>
11:  * @package Pastie
12:  */
13: class Pastie
14: {
15:     /**
16:      * Build Pastie's list of menu items.
17:      */
18:     static public function getMenu()
19:     {
20:         $menu = new Horde_Menu(Horde_Menu::MASK_ALL);
21:         $menu->add(Horde::url('paste.php'), _("Paste"), 'pastie.png');
22: 
23:         return $menu;
24:     }
25: 
26: }
27: 
API documentation generated by ApiGen