Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92654788
LegalpadDocumentBody.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 10:43
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22479101
Attached To
rPH Phabricator
LegalpadDocumentBody.php
View Options
<?php
final
class
LegalpadDocumentBody
extends
LegalpadDAO
implements
PhabricatorMarkupInterface
{
const
MARKUP_FIELD_TEXT
=
'markup:text '
;
protected
$phid
;
protected
$creatorPHID
;
protected
$documentPHID
;
protected
$version
;
protected
$title
;
protected
$text
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'version'
=>
'uint32'
,
'title'
=>
'text255'
,
'text'
=>
'text?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_document'
=>
array
(
'columns'
=>
array
(
'documentPHID'
,
'version'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhabricatorPHIDConstants
::
PHID_TYPE_LEGB
);
}
/* -( PhabricatorMarkupInterface )----------------------------------------- */
public
function
getMarkupFieldKey
(
$field
)
{
$hash
=
PhabricatorHash
::
digest
(
$this
->
getMarkupText
(
$field
));
return
'LEGB:'
.
$hash
;
}
public
function
newMarkupEngine
(
$field
)
{
return
PhabricatorMarkupEngine
::
newMarkupEngine
(
array
());
}
public
function
getMarkupText
(
$field
)
{
switch
(
$field
)
{
case
self
::
MARKUP_FIELD_TEXT
:
$text
=
$this
->
getText
();
break
;
case
self
::
MARKUP_FIELD_TITLE
:
$text
=
$this
->
getTitle
();
break
;
default
:
throw
new
Exception
(
pht
(
'Unknown field: %s'
,
$field
));
break
;
}
return
$text
;
}
public
function
didMarkupText
(
$field
,
$output
,
PhutilMarkupEngine
$engine
)
{
require_celerity_resource
(
'phabricator-remarkup-css'
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-remarkup'
,
),
$output
);
}
public
function
shouldUseMarkupCache
(
$field
)
{
return
(
bool
)
$this
->
getID
();
}
}
Event Timeline
Log In to Comment