Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113064512
PhabricatorMacroMemeDialogController.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
Wed, May 14, 16:47
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 16, 16:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26173006
Attached To
rPH Phabricator
PhabricatorMacroMemeDialogController.php
View Options
<?php
final
class
PhabricatorMacroMemeDialogController
extends
PhabricatorMacroController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$name
=
$request
->
getStr
(
'macro'
);
$above
=
$request
->
getStr
(
'above'
);
$below
=
$request
->
getStr
(
'below'
);
$e_macro
=
true
;
$errors
=
array
();
if
(
$request
->
isDialogFormPost
())
{
if
(!
$name
)
{
$e_macro
=
pht
(
'Required'
);
$errors
[]
=
pht
(
'Macro name is required.'
);
}
else
{
$macro
=
id
(
new
PhabricatorFileImageMacro
())->
loadOneWhere
(
'name = %s'
,
$name
);
if
(!
$macro
)
{
$e_macro
=
pht
(
'Invalid'
);
$errors
[]
=
pht
(
'No such macro.'
);
}
}
if
(!
$errors
)
{
$result
=
array
(
'text'
=>
"{meme, src={$name}, above={$above}, below={$below}}"
,
);
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$result
);
}
}
$view
=
id
(
new
AphrontFormLayoutView
())
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Macro'
))
->
setName
(
'macro'
)
->
setValue
(
$name
)
->
setError
(
$e_macro
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Above'
))
->
setName
(
'above'
)
->
setValue
(
$above
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Below'
))
->
setName
(
'below'
)
->
setValue
(
$below
));
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$user
)
->
setTitle
(
pht
(
'Create Meme'
))
->
appendChild
(
$view
)
->
addCancelButton
(
'/'
)
->
addSubmitButton
(
pht
(
'rofllolo!!~'
));
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment