Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2890409
AlmanacNetworkQuery.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
AlmanacNetworkQuery.php
View Options
<?php
final
class
AlmanacNetworkQuery
extends
AlmanacQuery
{
private
$ids
;
private
$phids
;
private
$names
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
newResultObject
(
)
{
return
new
AlmanacNetwork
(
)
;
}
public
function
withNames
(
array
$names
)
{
$this
->
names
=
$names
;
return
$this
;
}
public
function
withNameNgrams
(
$ngrams
)
{
return
$this
->
withNgramsConstraint
(
new
AlmanacNetworkNameNgrams
(
)
,
$ngrams
)
;
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
)
;
if
(
$this
->
ids
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'network.id IN (%Ld)'
,
$this
->
ids
)
;
}
if
(
$this
->
phids
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'network.phid IN (%Ls)'
,
$this
->
phids
)
;
}
if
(
$this
->
names
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'network.name IN (%Ls)'
,
$this
->
names
)
;
}
return
$where
;
}
protected
function
getPrimaryTableAlias
(
)
{
return
'network'
;
}
public
function
getQueryApplicationClass
(
)
{
return
PhabricatorAlmanacApplication
::
class
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 13:32 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1110094
Default Alt Text
AlmanacNetworkQuery.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment