123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- /**
- * Database Model base class.
- *
- * @package Kohana/Database
- * @category Models
- * @author Kohana Team
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- abstract class Kohana_Model_Database extends Model {
- /**
- * Create a new model instance. A [Database] instance or configuration
- * group name can be passed to the model. If no database is defined, the
- * "default" database group will be used.
- *
- * $model = Model::factory($name);
- *
- * @param string $name model name
- * @param mixed $db Database instance object or string
- * @return Model
- */
- public static function factory($name, $db = NULL)
- {
- // Add the model prefix
- $class = 'Model_'.$name;
- return new $class($db);
- }
- // Database instance
- protected $_db;
- /**
- * Loads the database.
- *
- * $model = new Foo_Model($db);
- *
- * @param mixed $db Database instance object or string
- * @return void
- */
- public function __construct($db = NULL)
- {
- if ($db)
- {
- // Set the instance or name
- $this->_db = $db;
- }
- elseif ( ! $this->_db)
- {
- // Use the default name
- $this->_db = Database::$default;
- }
- if (is_string($this->_db))
- {
- // Load the database
- $this->_db = Database::instance($this->_db);
- }
- }
- } // End Model
|