/** * get single ManchesJoueurs instance from a DOMElement * * @param DOMElement $node * @return ManchesJoueurs */ public static function fromDOMElement(DOMElement $node) { $o = new ManchesJoueurs(); $o->assignByHash(self::domNodeToHash($node, self::$FIELD_NAMES, self::$DEFAULT_VALUES, self::$FIELD_TYPES)); $o->notifyPristine(); return $o; }
/** * Fetch ManchesJoueurs's which this Joueurs references. * `joueurs`.`id_joueur` -> `manches_joueurs`.`id_joueur` * * @param PDO $db a PDO Database instance * @param array $sort array of DSC instances * @return ManchesJoueurs[] */ public function fetchManchesJoueursCollection(PDO $db, $sort = null) { $filter = array(ManchesJoueurs::FIELD_ID_JOUEUR => $this->getIdJoueur()); return ManchesJoueurs::findByFilter($db, $filter, true, $sort); }