mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
21 lines
350 B
PHP
Executable File
21 lines
350 B
PHP
Executable File
<?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;
|
|
}
|
|
}
|
|
}
|