ultimix
ad_banner_manager.php
Go to the documentation of this file.
1 <?php
2 
3  /*
4  * This source code is a part of the Ultimix Project.
5  * It is distributed under BSD license. All other third side source code (like tinyMCE) is distributed under
6  * it's own license wich could be found from the corresponding files or sources.
7  * This source code is provided "as is" without any warranties or garanties.
8  *
9  * Have a nice day!
10  *
11  * @url http://ultimix.sorceforge.net
12  *
13  * @author Alexey "gdever" Dodonov
14  */
15 
27 
38  var $Output;
39 
50  var $CachedMultyFS = false;
51  var $String = false;
52 
63  function __construct()
64  {
65  try
66  {
67  $this->CachedMultyFS = get_package( 'cached_multy_fs' , 'last' , __FILE__ );
68  $this->String = get_package( 'string' , 'last' , __FILE__ );
69  }
70  catch( Exception $e )
71  {
72  $a = func_get_args();_throw_exception_object( __METHOD__ , $a , $e );
73  }
74  }
75 
94  function controller( $Options )
95  {
96  try
97  {
98  $ContextSet = get_package_object( 'gui::context_set' , 'last' , __FILE__ );
99 
100  $ContextSet->execute( $Options , $this , __FILE__ );
101  }
102  catch( Exception $e )
103  {
104  $a = func_get_args();_throw_exception_object( __METHOD__ , $a , $e );
105  }
106  }
107 
130  function view( $Options )
131  {
132  try
133  {
134  $ContextSet = get_package_object( 'gui::context_set' , 'last' , __FILE__ );
135 
136  $ContextSet->execute( $Options , $this , __FILE__ );
137 
138  return( $this->Output );
139  }
140  catch( Exception $e )
141  {
142  $a = func_get_args();_throw_exception_object( __METHOD__ , $a , $e );
143  }
144  }
145  }
146 
147 ?>