| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Frame superclass.
- *
- * Every dinamicaly loaded section must inherit from this one.
- */
- abstract class Frame{
- /**
- * Database connection.
- */
- public $db;
- /**
- * View associated with the page.
- */
- public $view;
- /**
- * Constructor.
- *
- * @param MySQL_connection $db Connection to the database.
- */
- public function __construct($db){
- $this->db = $db;
- }
- }
- ?>
|