| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * ClientConfig
- *
- * Copyright 2011-2014 by Mark Hamstra <hello@markhamstra.com>
- *
- * 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 'OnMODXInit':
- 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) {
- $contextKey = $modx->context instanceof modContext ? $modx->context->get('key') : 'web';
- $settings = $clientConfig->getSettings($contextKey);
- /* 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;
- return;
|