forked from science-ation/science-ation
- Remove PHP5-isms
This commit is contained in:
parent
3da0ba87e2
commit
972f05b58e
@ -53,7 +53,7 @@ function person($person_id=NULL)
|
|||||||
class judge extends person /*implements TableEditorInterface*/ {
|
class judge extends person /*implements TableEditorInterface*/ {
|
||||||
|
|
||||||
/* Static members for the table editor */
|
/* Static members for the table editor */
|
||||||
static function tableEditorSetup($editor)
|
function tableEditorSetup($editor)
|
||||||
{
|
{
|
||||||
global $judges_fields, $judges_table_fields;
|
global $judges_fields, $judges_table_fields;
|
||||||
global $config;
|
global $config;
|
||||||
@ -137,7 +137,7 @@ static function tableEditorSetup($editor)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* STATIC */
|
/* STATIC */
|
||||||
static function tableEditorGetList($editor)
|
function tableEditorGetList($editor)
|
||||||
{
|
{
|
||||||
//return $editor->defaultGetList();
|
//return $editor->defaultGetList();
|
||||||
global $config;
|
global $config;
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
// - Fix INSERTING with a hidden field with value of NOW()
|
// - Fix INSERTING with a hidden field with value of NOW()
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
interface TableEditorInterface {
|
interface TableEditorInterface {
|
||||||
function tableEditorSetup($editor);
|
function tableEditorSetup($editor);
|
||||||
function tableEditorLoad();
|
function tableEditorLoad();
|
||||||
@ -34,7 +35,7 @@ interface TableEditorInterface {
|
|||||||
function tableEditorDelete();
|
function tableEditorDelete();
|
||||||
function tableEditorGetList($editor);
|
function tableEditorGetList($editor);
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user