ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilBibTex.php
Go to the documentation of this file.
1
<?php
2
9
class
ilBibTex
{
10
14
protected
static
$standard_fields
= array(
15
'address'
,
16
'annote'
,
17
'author'
,
18
'booktitle'
,
19
'chapter'
,
20
'crossref'
,
21
'edition'
,
22
'editor'
,
23
'eprint'
,
24
'howpublished'
,
25
'institution'
,
26
'journal'
,
27
'key'
,
28
'month'
,
29
'note'
,
30
'number'
,
31
'organization'
,
32
'pages'
,
33
'publisher'
,
34
'school'
,
35
'series'
,
36
'title'
,
37
'type'
,
38
'url'
,
39
'volume'
,
40
'year'
,
41
);
45
protected
static
$entry_types
= array(
46
'article'
,
47
'book'
,
48
'booklet'
,
49
'conference'
,
50
'inbook'
,
51
'incollection'
,
52
'inproceedings'
,
53
'manual'
,
54
'mastersthesis'
,
55
'misc'
,
56
'phdthesis'
,
57
'proceedings'
,
58
'techreport'
,
59
'unpublished'
,
60
);
61
62
68
public
static
function
isStandardField
($field_name) {
69
return
in_array($field_name, self::$standard_fields);
70
}
71
72
78
public
static
function
isEntryType
($entry_ype) {
79
return
in_array($entry_ype, self::$entry_types);
80
}
81
}
82
83
?>
ilBibTex\isStandardField
static isStandardField($field_name)
Definition:
class.ilBibTex.php:68
ilBibTex
Class ilBibTex.
Definition:
class.ilBibTex.php:9
ilBibTex\$entry_types
static $entry_types
Definition:
class.ilBibTex.php:45
ilBibTex\isEntryType
static isEntryType($entry_ype)
Definition:
class.ilBibTex.php:78
ilBibTex\$standard_fields
static $standard_fields
Definition:
class.ilBibTex.php:14
Modules
Bibliographic
classes
Types
class.ilBibTex.php
Generated on Mon Mar 31 2025 19:00:33 for ILIAS by
1.8.13 (using
Doxyfile
)