Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106671806
PhabricatorTooltipUIExample.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
Sat, Mar 29, 18:30
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Mar 31, 19:30 (2 d)
Engine
blob
Format
Raw Data
Handle
25249589
Attached To
rPH Phabricator
PhabricatorTooltipUIExample.php
View Options
<?php
final
class
PhabricatorTooltipUIExample
extends
PhabricatorUIExample
{
public
function
getName
()
{
return
'Tooltips'
;
}
public
function
getDescription
()
{
return
hsprintf
(
'Use <tt>JX.Tooltip</tt> to create tooltips.'
);
}
public
function
renderExample
()
{
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
require_celerity_resource
(
'aphront-tooltip-css'
);
$style
=
'width: 200px; '
.
'text-align: center; '
.
'margin: 20px; '
.
'background: #dfdfdf; '
.
'padding: 20px 10px; '
.
'border: 1px solid black; '
;
$lorem
=
<<<EOTEXT
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
EOTEXT;
$overflow
=
str_repeat
(
'M'
,
1024
);
$metas
=
array
(
'hi'
=>
array
(
'tip'
=>
'Hi'
,
),
'lorem (north)'
=>
array
(
'tip'
=>
$lorem
,
),
'lorem (east)'
=>
array
(
'tip'
=>
$lorem
,
'align'
=>
'E'
,
),
'lorem (south)'
=>
array
(
'tip'
=>
$lorem
,
'align'
=>
'S'
,
),
'lorem (west)'
=>
array
(
'tip'
=>
$lorem
,
'align'
=>
'W'
,
),
'lorem (large, north)'
=>
array
(
'tip'
=>
$lorem
,
'size'
=>
300
,
),
'lorem (large, east)'
=>
array
(
'tip'
=>
$lorem
,
'size'
=>
300
,
'align'
=>
'E'
,
),
'lorem (large, west)'
=>
array
(
'tip'
=>
$lorem
,
'size'
=>
300
,
'align'
=>
'W'
,
),
'lorem (large, south)'
=>
array
(
'tip'
=>
$lorem
,
'size'
=>
300
,
'align'
=>
'S'
,
),
'overflow (north)'
=>
array
(
'tip'
=>
$overflow
,
),
'overflow (east)'
=>
array
(
'tip'
=>
$overflow
,
'align'
=>
'E'
,
),
'overflow (south)'
=>
array
(
'tip'
=>
$overflow
,
'align'
=>
'S'
,
),
'overflow (west)'
=>
array
(
'tip'
=>
$overflow
,
'align'
=>
'W'
,
),
);
$content
=
array
();
foreach
(
$metas
as
$key
=>
$meta
)
{
$content
[]
=
javelin_tag
(
'div'
,
array
(
'sigil'
=>
'has-tooltip'
,
'meta'
=>
$meta
,
'style'
=>
$style
,
),
$key
);
}
return
$content
;
}
}
Event Timeline
Log In to Comment