Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/enrol/authorize/const.php
Go to the documentation of this file.
00001 <?php
00002 
00009 define('AN_METHOD_CC',     'cc');
00010 define('AN_METHOD_ECHECK', 'echeck');
00030 define('AN_STATUS_NONE',            0x00);
00031 define('AN_STATUS_AUTH',            0x01);
00032 define('AN_STATUS_CAPTURE',         0x02);
00033 define('AN_STATUS_AUTHCAPTURE',     0x03);
00034 define('AN_STATUS_CREDIT',          0x04);
00035 define('AN_STATUS_VOID',            0x08);
00036 define('AN_STATUS_EXPIRE',          0x10);
00037 define('AN_STATUS_UNDERREVIEW',     0x20);
00038 define('AN_STATUS_APPROVEDREVIEW',  0x40);
00039 define('AN_STATUS_REVIEWFAILED',    0x80);
00040 define('AN_STATUS_TEST',            0xff); // dummy status
00068 define('AN_ACTION_NONE',                0);
00069 define('AN_ACTION_AUTH_ONLY',           1);
00070 define('AN_ACTION_CAPTURE_ONLY',        2);
00071 define('AN_ACTION_AUTH_CAPTURE',        3);
00072 define('AN_ACTION_PRIOR_AUTH_CAPTURE',  4);
00073 define('AN_ACTION_CREDIT',              5);
00074 define('AN_ACTION_VOID',                6);
00085 define('AN_RETURNZERO', 0);
00086 define('AN_APPROVED',   1);
00087 define('AN_DECLINED',   2);
00088 define('AN_ERROR',      3);
00089 define('AN_REVIEW',     4);
 All Data Structures Namespaces Files Functions Variables Enumerations