Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91474387
PhabricatorEditEngineConfigurationSearchEngine.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
Mon, Nov 11, 11:58
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 11:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22268227
Attached To
rPH Phabricator
PhabricatorEditEngineConfigurationSearchEngine.php
View Options
<?php
final
class
PhabricatorEditEngineConfigurationSearchEngine
extends
PhabricatorApplicationSearchEngine
{
private
$engineKey
;
public
function
setEngineKey
(
$engine_key
)
{
$this
->
engineKey
=
$engine_key
;
return
$this
;
}
public
function
getEngineKey
()
{
return
$this
->
engineKey
;
}
public
function
canUseInPanelContext
()
{
return
false
;
}
public
function
getResultTypeDescription
()
{
return
pht
(
'Forms'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorTransactionsApplication'
;
}
public
function
newQuery
()
{
return
id
(
new
PhabricatorEditEngineConfigurationQuery
())
->
withEngineKeys
(
array
(
$this
->
getEngineKey
()));
}
protected
function
buildQueryFromParameters
(
array
$map
)
{
$query
=
$this
->
newQuery
();
$is_create
=
$map
[
'isCreate'
];
if
(
$is_create
!==
null
)
{
$query
->
withIsDefault
(
$is_create
);
}
$is_edit
=
$map
[
'isEdit'
];
if
(
$is_edit
!==
null
)
{
$query
->
withIsEdit
(
$is_edit
);
}
return
$query
;
}
protected
function
buildCustomSearchFields
()
{
return
array
(
id
(
new
PhabricatorSearchThreeStateField
())
->
setLabel
(
pht
(
'Create'
))
->
setKey
(
'isCreate'
)
->
setOptions
(
pht
(
'Show All'
),
pht
(
'Hide Create Forms'
),
pht
(
'Show Only Create Forms'
)),
id
(
new
PhabricatorSearchThreeStateField
())
->
setLabel
(
pht
(
'Edit'
))
->
setKey
(
'isEdit'
)
->
setOptions
(
pht
(
'Show All'
),
pht
(
'Hide Edit Forms'
),
pht
(
'Show Only Edit Forms'
)),
);
}
protected
function
getDefaultFieldOrder
()
{
return
array
();
}
protected
function
getURI
(
$path
)
{
return
'/transactions/editengine/'
.
$this
->
getEngineKey
().
'/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
$names
=
array
(
'all'
=>
pht
(
'All Forms'
),
'create'
=>
pht
(
'Create Forms'
),
'modify'
=>
pht
(
'Edit Forms'
),
);
return
$names
;
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'all'
:
return
$query
;
case
'create'
:
return
$query
->
setParameter
(
'isCreate'
,
true
);
case
'modify'
:
return
$query
->
setParameter
(
'isEdit'
,
true
);
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$configs
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$configs
,
'PhabricatorEditEngineConfiguration'
);
$viewer
=
$this
->
requireViewer
();
$engine_key
=
$this
->
getEngineKey
();
$list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
);
foreach
(
$configs
as
$config
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$config
->
getDisplayName
());
$id
=
$config
->
getID
();
if
(
$id
)
{
$item
->
addIcon
(
'fa-file-text-o bluegrey'
,
pht
(
'Form %d'
,
$id
));
$key
=
$id
;
}
else
{
$item
->
addIcon
(
'fa-file-text bluegrey'
,
pht
(
'Builtin'
));
$key
=
$config
->
getBuiltinKey
();
}
$item
->
setHref
(
"/transactions/editengine/{$engine_key}/view/{$key}/"
);
if
(
$config
->
getIsDefault
())
{
$item
->
addAttribute
(
pht
(
'Default Create Form'
));
}
if
(
$config
->
getIsEdit
())
{
$item
->
addAttribute
(
pht
(
'Edit Form'
));
}
if
(
$config
->
getIsDisabled
())
{
$item
->
setDisabled
(
true
);
$item
->
setStatusIcon
(
'fa-ban grey'
,
pht
(
'Disabled'
));
}
else
{
$item
->
setStatusIcon
(
'fa-file-text-o green'
,
pht
(
'Enabled'
));
}
$list
->
addItem
(
$item
);
}
return
id
(
new
PhabricatorApplicationSearchResultView
())
->
setObjectList
(
$list
);
}
}
Event Timeline
Log In to Comment