コード例 #1
0
ファイル: event_handler.php プロジェクト: hardikamutech/loov
 /**
  * 
  * @return BOOKMARKS_CLASS_EventHandler
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
コード例 #2
0
ファイル: init.php プロジェクト: hardikamutech/loov
<?php

/**
 * Copyright (c) 2014, Skalfa LLC
 * All rights reserved.
 *
 * ATTENTION: This commercial software is intended for exclusive use with SkaDate Dating Software (http://www.skadate.com) and is licensed under SkaDate Exclusive License by Skalfa LLC.
 *
 * Full text of this license can be found at http://www.skadate.com/sel.pdf
 */
OW::getRouter()->addRoute(new OW_Route('bookmarks.admin', 'bookmarks/admin', 'BOOKMARKS_CTRL_Admin', 'index'));
OW::getRouter()->addRoute(new OW_Route('bookmarks.mark_state', 'bookmarks/rsp/mark-state', 'BOOKMARKS_CTRL_Rsp', 'markState'));
OW::getRouter()->addRoute(new OW_Route('bookmarks.list', 'bookmarks/list/:category', 'BOOKMARKS_CTRL_List', 'getList', array('category' => array('default' => 'latest'))));
BOOKMARKS_CLASS_EventHandler::getInstance()->init();
コード例 #3
0
ファイル: init.php プロジェクト: hardikamutech/loov
<?php

/**
 * Copyright (c) 2014, Skalfa LLC
 * All rights reserved.
 *
 * ATTENTION: This commercial software is intended for exclusive use with SkaDate Dating Software (http://www.skadate.com) and is licensed under SkaDate Exclusive License by Skalfa LLC.
 *
 * Full text of this license can be found at http://www.skadate.com/sel.pdf
 */
BOOKMARKS_CLASS_EventHandler::getInstance()->genericInit();