Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99053513
AlmanacNetworkQuery.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, Jan 18, 18:20
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 18:20 (2 d)
Engine
blob
Format
Raw Data
Handle
23698118
Attached To
rPH Phabricator
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
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
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'
;
}
}
Event Timeline
Log In to Comment