Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1499544
DrydockCommandInterface.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DrydockCommandInterface.php
View Options
<?php
abstract
class
DrydockCommandInterface
extends
DrydockInterface
{
private
$workingDirectory
;
public
function
setWorkingDirectory
(
$working_directory
)
{
$this
->
workingDirectory
=
$working_directory
;
return
$this
;
}
public
function
getWorkingDirectory
()
{
return
$this
->
workingDirectory
;
}
final
public
function
getInterfaceType
()
{
return
'command'
;
}
final
public
function
exec
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolve
();
}
final
public
function
execx
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolvex
();
}
abstract
public
function
getExecFuture
(
$command
);
protected
function
applyWorkingDirectoryToArgv
(
array
$argv
)
{
if
(
$this
->
getWorkingDirectory
()
!==
null
)
{
$cmd
=
$argv
[
0
];
$cmd
=
"(cd %s; {$cmd})"
;
$argv
=
array_merge
(
array
(
$cmd
),
array
(
$this
->
getWorkingDirectory
()),
array_slice
(
$argv
,
1
));
}
return
$argv
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jul 13, 7:42 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
349665
Default Alt Text
DrydockCommandInterface.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment