mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
17 lines
254 B
PHP
17 lines
254 B
PHP
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||
|
|
||
|
if ( ! function_exists('ev_type'))
|
||
|
{
|
||
|
function ev_type($ev)
|
||
|
{
|
||
|
if ($ev == 'build')
|
||
|
return 0;
|
||
|
|
||
|
if ($ev == 'upgrade')
|
||
|
return 1;
|
||
|
|
||
|
if ($ev == 'create')
|
||
|
return 2;
|
||
|
}
|
||
|
}
|