Public Member Functions | |
getNextId () |
Properties:
Definition at line 37 of file Numeric.php.
getNextId | ( | ) |
Implements Mage_Eav_Model_Entity_Increment_Interface.
Definition at line 40 of file Numeric.php.
00041 { 00042 $last = $this->getLastId(); 00043 00044 if (strpos($last, $this->getPrefix())===0) { 00045 $last = (int)substr($last, strlen($this->getPrefix())); 00046 } else { 00047 $last = (int)$last; 00048 } 00049 00050 $next = $last+1; 00051 00052 return $this->format($next); 00053 }