PHP code example of dayjo / alfred-workflow-helper
1. Go to this page and download the library: Download dayjo/alfred-workflow-helper library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dayjo / alfred-workflow-helper example snippets
$Workflow = new AlfredWorkflow();
$Workflow->addCommand( new AlfredWorkflowCommand(
[
'prefix' => '*', // default (no extra command, i.e. "keyword myTask"
'command' => TimeTracker@trackTime
]
) );
spl_autoload_register(function ($class_name) {
$class_name = str_replace("\\", DIRECTORY_SEPARATOR, $class_name);
$Workflow = new Workflow();
$Workflow->addCommand(new Command(
[
'prefix' => '', // default (no extra command, i.e. "keyword myTask"
'command' => function ($input) {
$tasks = ['joel','dayjo'];
$List = new ItemList;
foreach ($tasks as $task) {
if (stristr($task, $input)) {
$List->add(new Item([
'title' => 'Start Tracking "' . $task. '"',
'arg' => 'start ' . $task,
'autocomplete' => $task])
);
}
}
echo $List->output();
}
]
));
$Workflow->run();
spl_autoload_register(function ($class_name) {
$class_name = str_replace("\\", DIRECTORY_SEPARATOR, $class_name);
flow;
use Alfred\Command as Command;
use Alfred\ItemList as ItemList;
use Alfred\Item as Item;
$Workflow = new Workflow();
$Workflow->addCommand(new Command(
[
'prefix' => 'start', // default (no extra command, i.e. "keyword myTask"
'command' => function ($input) {
echo "STARTING $input";
}
]
));
$Workflow->run();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.