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/auth.inc.php

13 lines
512 B
PHP
Raw Normal View History

<?php
$auth_methods = Array
(
Array ('module' => 'invoice', 'method' => 'user_search'),
Array ('module' => 'invoice', 'method' => 'user_search_show'),
Array ('module' => 'invoice', 'method' => 'user_view'),
Array ('module' => 'invoice', 'method' => 'pdf'),
Array ('module' => 'invoice', 'method' => 'checkoutnow'),
Array ('module' => 'invoice', 'method' => 'checkout_multiple_preview'),
Array ('module' => 'invoice', 'method' => 'custom_tracking'),
Array ('module' => 'invoice', 'method' => 'has_unpaid'),
);
?>