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

Source for file Submit.class.php

Documentation is available at Submit.class.php

  1. <?php
  2. /**
  3.  * Содержит класс Button
  4.  *
  5.  * @package energine
  6.  * @subpackage share
  7.  * @author dr.Pavka
  8.  * @copyright Energine 2006
  9.  * @version $Id$
  10.  */
  11.  
  12. //require_once('core/modules/share/components/Button.class.php');
  13.  
  14. /**
  15.  * Кнопка отправки данных
  16.  *
  17.  * @package energine
  18.  * @subpackage share
  19.  * @author dr.Pavka
  20.  */
  21.  
  22. class Submit extends Button {
  23.     /**
  24.      * Конструктор
  25.      *
  26.      * @return type 
  27.      * @access public
  28.      */
  29.  
  30.     public function __construct($id$action false$image false$title false$tooltip false{
  31.         parent::__construct($id$action$image$title$tooltip);
  32.         $this->type = 'submit';
  33.     }
  34. }
В создании документации нам помог: phpDocumentor