Example #1
0
 /**
  * Returns an instance of class (singleton pattern implementation).
  *
  * @return UCAROUSEL_CLASS_GroupsBridge
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
Example #2
0
<?php

/**
 * Copyright (c) 2012, Sergey Kambalin
 * All rights reserved.
 * ATTENTION: This commercial software is intended for use with Oxwall Free Community Software http://www.oxwall.org/
 * and is licensed under Oxwall Store Commercial License.
 * Full text of this license can be found at http://www.oxwall.org/store/oscl
 */
require_once dirname(__FILE__) . DS . 'classes' . DS . 'groups_bridge.php';
$widgetService = BOL_ComponentAdminService::getInstance();
$widget = $widgetService->addWidget('UCAROUSEL_CMP_UsersWidget', false);
$widgetPlace = $widgetService->addWidgetToPlace($widget, BOL_ComponentService::PLACE_INDEX);
$widgetService->addWidgetToPosition($widgetPlace, BOL_ComponentService::SECTION_TOP, 0);
$widgetService->addWidgetToPlace($widget, BOL_ComponentService::PLACE_DASHBOARD);
UCAROUSEL_CLASS_GroupsBridge::getInstance()->addWidget('UCAROUSEL_CMP_GroupUsersWidget');
Example #3
0
 public function getList($groupId, $count, $withPhoto = true)
 {
     return UCAROUSEL_CLASS_GroupsBridge::getInstance()->findUsers($groupId, $count, $withPhoto);
 }
Example #4
0
<?php

/**
 * Copyright (c) 2012, Sergey Kambalin
 * All rights reserved.
 * ATTENTION: This commercial software is intended for use with Oxwall Free Community Software http://www.oxwall.org/
 * and is licensed under Oxwall Store Commercial License.
 * Full text of this license can be found at http://www.oxwall.org/store/oscl
 */
UCAROUSEL_CLASS_GroupsBridge::getInstance()->init();