Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892235
PhutilConsoleList.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhutilConsoleList.php
View Options
<?php
final
class
PhutilConsoleList
extends
PhutilConsoleView
{
private
$items
=
array
(
)
;
private
$wrap
=
true
;
private
$bullet
=
'-'
;
public
function
addItem
(
$item
)
{
$this
->
items
[
]
=
$item
;
return
$this
;
}
public
function
addItems
(
array
$items
)
{
foreach
(
$items
as
$item
)
{
$this
->
addItem
(
$item
)
;
}
return
$this
;
}
public
function
getItems
(
)
{
return
$this
->
items
;
}
public
function
setBullet
(
$bullet
)
{
$this
->
bullet
=
$bullet
;
return
$this
;
}
public
function
getBullet
(
)
{
return
$this
->
bullet
;
}
public
function
setWrap
(
$wrap
)
{
$this
->
wrap
=
$wrap
;
return
$this
;
}
protected
function
drawView
(
)
{
$indent_depth
=
6
;
$indent_string
=
str_repeat
(
' '
,
$indent_depth
)
;
if
(
$this
->
bullet
!==
null
)
{
$bullet
=
$this
->
bullet
.
' '
;
$indent_depth
=
$indent_depth
+
phutil_utf8_console_strlen
(
$bullet
)
;
}
else
{
$bullet
=
''
;
}
$output
=
array
(
)
;
foreach
(
$this
->
getItems
(
)
as
$item
)
{
if
(
$this
->
wrap
)
{
$item
=
tsprintf
(
'%s'
,
$item
)
->
applyIndent
(
$indent_depth
,
false
)
;
}
$output
[
]
=
$indent_string
.
$bullet
.
$item
;
}
return
$this
->
drawLines
(
$output
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:28 (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1115910
Default Alt Text
PhutilConsoleList.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment