Open Source Extras Gitify Commands Extract
Gitify extract
Used to read stuff from the MODX database, and turn it into majestic YAML data files.
Usage:
extract
Options:
--help (-h) Display this help message.
--verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug.
--version (-V) Display the Gitify version.
--dotfile=.filename Gitify YAML file to use.
To give an example of the YAML data file, here’s how a plugin would be stored:
id: 9
name: ClientConfig
description: 'Sets system settings from the Client Config CMP.'
properties: null
-----
/**
* ClientConfig
*
* Copyright 2011 by Mark Hamstra <[email protected]>
*
* ClientConfig is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* ClientConfig is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* ClientConfig; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package clientconfig
*
* @var modX $modx
* @var int $id
* @var string $mode
* @var modResource $resource
* @var modTemplate $template
* @var modTemplateVar $tv
* @var modChunk $chunk
* @var modSnippet $snippet
* @var modPlugin $plugin
*/
$eventName = $modx->event->name;
switch($eventName) {
case 'OnHandleRequest':
/* Grab the class */
$path = $modx->getOption('clientconfig.core_path', null, $modx->getOption('core_path') . 'components/clientconfig/');
$path .= 'model/clientconfig/';
$clientConfig = $modx->getService('clientconfig','ClientConfig', $path);
/* If we got the class (gotta be careful of failed migrations), grab settings and go! */
if ($clientConfig instanceof ClientConfig) {
$settings = $clientConfig->getSettings();
/* Make settings available as [[++tags]] */
$modx->setPlaceholders($settings, '+');
/* Make settings available for $modx->getOption() */
foreach ($settings as $key => $value) {
$modx->setOption($key, $value);
}
}
break;
}
return;