Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F487935
HeraldObjectTranscript.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
HeraldObjectTranscript.php
View Options
<?php
final
class
HeraldObjectTranscript
{
protected
$phid
;
protected
$type
;
protected
$name
;
protected
$fields
;
public
function
setPHID
(
$phid
)
{
$this
->
phid
=
$phid
;
return
$this
;
}
public
function
getPHID
()
{
return
$this
->
phid
;
}
public
function
setType
(
$type
)
{
$this
->
type
=
$type
;
return
$this
;
}
public
function
getType
()
{
return
$this
->
type
;
}
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
setFields
(
array
$fields
)
{
foreach
(
$fields
as
$key
=>
$value
)
{
$fields
[
$key
]
=
self
::
truncateValue
(
$value
,
4096
);
}
$this
->
fields
=
$fields
;
return
$this
;
}
public
function
getFields
()
{
return
$this
->
fields
;
}
private
static
function
truncateValue
(
$value
,
$length
)
{
if
(
is_string
(
$value
))
{
if
(
strlen
(
$value
)
<=
$length
)
{
return
$value
;
}
else
{
// NOTE: phutil_utf8_shorten() has huge runtime for giant strings.
return
phutil_utf8ize
(
substr
(
$value
,
0
,
$length
).
"
\n
<...>"
);
}
}
else
if
(
is_array
(
$value
))
{
foreach
(
$value
as
$key
=>
$v
)
{
if
(
$length
<=
0
)
{
$value
[
'<...>'
]
=
'<...>'
;
unset
(
$value
[
$key
]);
}
else
{
$v
=
self
::
truncateValue
(
$v
,
$length
);
$length
-=
strlen
(
$v
);
$value
[
$key
]
=
$v
;
}
}
return
$value
;
}
else
{
return
$value
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, May 7, 6:49 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
92679
Default Alt Text
HeraldObjectTranscript.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment