1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Module.php

61 lines
1.5 KiB
PHP
Raw Normal View History

2006-05-30 12:42:10 +04:00
<?php
class Doctrine_Module implements IteratorAggregate, Countable {
/**
* @var array $components an array containing all the components in this module
*/
protected $components = array();
2006-05-30 12:42:10 +04:00
/**
* @var string $name the name of this module
*/
private $name;
/**
* constructor
*
* @param string $name the name of this module
*/
public function __construct($name) {
$this->name = $name;
}
/**
* returns the name of this module
*
* @return string
*/
public function getName() {
return $this->name;
}
/**
* flush
* saves all components
*
* @return void
*/
public function flush() {
$session = Doctrine_Manager::getInstance()->getCurrentSession();
$tree = $session->buildFlushTree($this->components);
}
/**
* getIterator
* this class implements IteratorAggregate interface
* returns an iterator that iterates through the components
* in this module
*
* @return ArrayIterator
*/
public function getIterator() {
return new ArrayIterator($this->components);
}
/**
* count
* this class implements Countable interface
* returns the number of components in this module
*
* @return integer
*/
public function count() {
return count($this->components);
}
}
?>