UIX Documentation
  • Namespace
  • Class
  • Tree

Namespaces

  • None
  • uix
    • data
    • ui
      • control

Classes

  • uix\data\data
  • uix\ui
  • uix\ui\box
  • uix\ui\control
  • uix\ui\control\autocomplete
  • uix\ui\control\button
  • uix\ui\control\checkbox
  • uix\ui\control\color
  • uix\ui\control\editor
  • uix\ui\control\email
  • uix\ui\control\file
  • uix\ui\control\hidden
  • uix\ui\control\number
  • uix\ui\control\post_relation
  • uix\ui\control\radio
  • uix\ui\control\select
  • uix\ui\control\separator
  • uix\ui\control\slider
  • uix\ui\control\template
  • uix\ui\control\text
  • uix\ui\control\textarea
  • uix\ui\control\toggle
  • uix\ui\footer
  • uix\ui\grid
  • uix\ui\header
  • uix\ui\help
  • uix\ui\metabox
  • uix\ui\modal
  • uix\ui\notice
  • uix\ui\page
  • uix\ui\panel
  • uix\ui\post_type
  • uix\ui\repeat
  • uix\ui\section
  • uix\ui\uix

Interfaces

  • uix\data\load
  • uix\data\save

Functions

  • uix
  • uix_autoload_class
 1 <?php
 2 /**
 3  * UIX Footer
 4  *
 5  * @package   ui
 6  * @author    David Cramer
 7  * @license   GPL-2.0+
 8  * @link
 9  * @copyright 2016 David Cramer
10  */
11 namespace uix\ui;
12 
13 /**
14  * Footer type used for creating footer based sections. Mainly used in modals and pages
15  * 
16  * @package uix\ui
17  * @author  David Cramer
18  */
19 class footer extends section{
20 
21     /**
22      * The type of object
23      *
24      * @since 1.0.0
25      * @access public
26      * @var      string
27      */
28     public $type = 'footer';
29 
30 
31 
32     /**
33      * Render the Control
34      *
35      * @since 1.0.0
36      * @see \uix\ui\uix
37      * @access public
38      * @return string HTML of rendered box
39      */
40     public function render(){
41 
42         $output = $this->render_template();
43         if( !empty( $this->child ) )
44             $output .= $this->render_children();
45 
46         return $output;
47     }
48 
49 
50 
51 }
UIX Documentation API documentation generated by ApiGen