This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/invoice/classes/Task/Invoice/Remindoverdue2.php
2013-10-10 13:56:14 +11:00

20 lines
528 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Send out second reminder for over due invoices.
*
* @package Invoice
* @category Tasks
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Task_Invoice_Remindoverdue2 extends Task_Invoice_Remindoverdue1 {
protected function _execute(array $params) {
$action = $this->remind_overdue(2);
return _('OverDue Notice #2 Reminders Sent: ').join('|',$action);
}
}
?>