1: <?php 2: /** 3: * Stores queue tasks in a database table. 4: */ 5: class Horde_Queue_Storage_Db extends Horde_Queue_Storage_Base 6: { 7: protected $_db; 8: 9: public function add($task) 10: { 11: } 12: 13: public function getMany($num = 50) 14: { 15: } 16: } 17: