]> wagnertech.de Git - projects.git/blob - verleihnix/Verleihnix/impl/data/build/classes/propel/Werkzeug.php
eclipse-cpp added
[projects.git] / verleihnix / Verleihnix / impl / data / build / classes / propel / Werkzeug.php
1 <?php
2
3
4
5 /**
6  * Skeleton subclass for representing a row from the 'werkzeug' table.
7  *
8  *
9  *
10  * You should add additional methods to this class to meet the
11  * application requirements.  This class will only be generated as
12  * long as it does not already exist in the output directory.
13  *
14  * @package    propel.generator.propel
15  */
16 class Werkzeug extends BaseWerkzeug
17 {
18     public function save(PropelPDO $con = null)
19     {
20         if ($this->isNew() || $this->mod >= 999999) {
21             $this->setMod(0);
22         } else {
23             $this->setMod($this->mod + 1);
24         }
25         return parent::save($con);
26     }
27     
28 }