1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/en/_old-docs/Configuration - Custom getters and setters.php

23 lines
533 B
PHP
Raw Normal View History

<code type="php">
class Customer extends Doctrine_Record {
public function setUp() {
// setup code goes here
}
public function setTableDefinition() {
// table definition code goes here
}
public function getAvailibleProducts() {
// some code
}
public function setName($name) {
if($this->isValidName($name))
$this->set("name",$name);
}
public function getName() {
return $this->get("name");
}
}
</code>