Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295178
DiffusionPathQuery.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
851 B
Referenced Files
None
Subscribers
None
DiffusionPathQuery.php
View Options
<?php
final
class
DiffusionPathQuery
extends
Phobject
{
private
$pathIDs
;
public
function
withPathIDs
(
array
$path_ids
)
{
$this
->
pathIDs
=
$path_ids
;
return
$this
;
}
public
function
execute
(
)
{
$conn
=
id
(
new
PhabricatorRepository
(
)
)
->
establishConnection
(
'r'
)
;
$where
=
$this
->
buildWhereClause
(
$conn
)
;
$results
=
queryfx_all
(
$conn
,
'SELECT * FROM %T %Q'
,
PhabricatorRepository
::
TABLE_PATH
,
$where
)
;
return
ipull
(
$results
,
null
,
'id'
)
;
}
protected
function
buildWhereClause
(
AphrontDatabaseConnection
$conn
)
{
$where
=
array
(
)
;
if
(
$this
->
pathIDs
)
{
$where
[
]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
pathIDs
)
;
}
if
(
$where
)
{
return
qsprintf
(
$conn
,
'WHERE %LA'
,
$where
)
;
}
else
{
return
qsprintf
(
$conn
,
''
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:08 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1132621
Default Alt Text
DiffusionPathQuery.php (851 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment