Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35860076
PHUIIconView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
2 KB
Subscribers
None
PHUIIconView.php
View Options
<?php
final
class
PHUIIconView
extends
AphrontTagView
{
const
SPRITE_MINICONS
=
'minicons'
;
const
SPRITE_ACTIONS
=
'actions'
;
const
SPRITE_APPS
=
'apps'
;
const
SPRITE_TOKENS
=
'tokens'
;
const
SPRITE_PAYMENTS
=
'payments'
;
const
SPRITE_ICONS
=
'icons'
;
const
SPRITE_LOGIN
=
'login'
;
const
SPRITE_STATUS
=
'status'
;
const
SPRITE_PROJECTS
=
'projects'
;
const
HEAD_SMALL
=
'phuihead-small'
;
const
HEAD_MEDIUM
=
'phuihead-medium'
;
private
$href
=
null
;
private
$image
;
private
$headSize
=
null
;
private
$spriteIcon
;
private
$spriteSheet
;
public
function
setHref
(
$href
)
{
$this
->
href
=
$href
;
return
$this
;
}
public
function
setImage
(
$image
)
{
$this
->
image
=
$image
;
return
$this
;
}
public
function
setHeadSize
(
$size
)
{
$this
->
headSize
=
$size
;
return
$this
;
}
public
function
setSpriteIcon
(
$sprite
)
{
$this
->
spriteIcon
=
$sprite
;
return
$this
;
}
public
function
setSpriteSheet
(
$sheet
)
{
$this
->
spriteSheet
=
$sheet
;
return
$this
;
}
public
function
getTagName
()
{
$tag
=
'span'
;
if
(
$this
->
href
)
{
$tag
=
'a'
;
}
return
$tag
;
}
public
function
getTagAttributes
()
{
require_celerity_resource
(
'phui-icon-view-css'
);
$style
=
null
;
$classes
=
array
();
$classes
[]
=
'phui-icon-view'
;
if
(
$this
->
spriteIcon
)
{
require_celerity_resource
(
'sprite-'
.
$this
->
spriteSheet
.
'-css'
);
$classes
[]
=
'sprite-'
.
$this
->
spriteSheet
;
$classes
[]
=
$this
->
spriteSheet
.
'-'
.
$this
->
spriteIcon
;
}
else
{
if
(
$this
->
headSize
)
{
$classes
[]
=
$this
->
headSize
;
}
$style
=
'background-image: url('
.
$this
->
image
.
');'
;
}
return
array
(
'href'
=>
$this
->
href
,
'style'
=>
$style
,
'class'
=>
$classes
,
);
}
public
static
function
getSheetManifest
(
$sheet
)
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
$path
=
$root
.
'/resources/sprite/manifest/'
.
$sheet
.
'.json'
;
$data
=
Filesystem
::
readFile
(
$path
);
return
idx
(
json_decode
(
$data
,
true
),
'sprites'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 15, 3:45 PM (15 h, 24 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ce/86/4284e4f363ac30c16490d4001daa
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment