tangra logo
   
[ class tree: tangra_lib ] [ index: tangra_lib ] [ all elements ]
 

Source for file i_static_viewable.class.php

Documentation is available at i_static_viewable.class.php

  1. <?php
  2. // *** Tangra (Application Framework and Tools for PHP)
  3. //  $Id$
  4. //
  5.  
  6.  
  7. /**
  8.  * Contains interface I_Static_Viewable
  9.  *
  10.  * @package tangra_lib
  11.  * @subpackage interfaces
  12.  *
  13.  */
  14.  
  15. /**
  16.  * When implemented shows that object has static HTML representation/view
  17.  *
  18.  * @package tangra_lib
  19.  * @subpackage interfaces
  20.  */
  21. interface I_Static_Viewable {
  22.     public function get_tple_exports();
  23. }