Lines Matching refs:hlp
19 $hlp = plugin_load('helper', 'booking');
22 $hlp->addBooking('test:book', '2020-12-17 13:00', '1.5h', 'andi');
39 $hlp = plugin_load('helper', 'booking');
41 $hlp->addBooking('test:book', '2020-12-17 13:00', 'foobar', 'andi');
51 $hlp = plugin_load('helper', 'booking');
53 $hlp->addBooking('test:book', '2020-12-17 13:00', '1.5h', 'andi');
54 $hlp->addBooking('test:book', '2020-12-17 13:20', '1.5h', 'andi');
61 $hlp = plugin_load('helper', 'booking');
64 $hlp->addBooking('test:run', '2020-12-17 13:00', '1.5h', 'andi');
65 $hlp->addBooking('test:run', '2020-12-17 14:30', '1.5h', 'andi');
66 $hlp->addBooking('test:run', '2020-12-17 16:00', '1.5h', 'andi');
68 $bookings = $hlp->getBookings('test:run');
72 $ok = $hlp->cancelBooking('test:run', '2020-12-17 14:30');
76 $ok = $hlp->cancelBooking('test:run', '2020-12-17 14:33');
79 $bookings = $hlp->getBookings('test:run');