HomeHelpTrac

Changeset 15201 for trunk/periodic


Ignore:
Timestamp:
06/06/11 02:27:38 (12 months ago)
Author:
Alexander Trofimov
Message:

Dolphin 8 initial commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/periodic/cron.php

    r14847 r15201  
    11<?php 
    2 /*************************************************************************** 
    3 *                            Dolphin Smart Community Builder 
    4 *                              ----------------- 
    5 *     begin                : Mon Mar 23 2006 
    6 *     copyright            : (C) 2006 BoonEx Group 
    7 *     website              : http://www.boonex.com/ 
    8 * This file is part of Dolphin - Smart Community Builder 
    9 * 
    10 * Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License.  
    11 * http://creativecommons.org/licenses/by/3.0/ 
    12 * 
    13 * Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
    14 * without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
    15 * See the Creative Commons Attribution 3.0 License for more details.  
    16 * You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin,  
    17 * see license.txt file; if not, write to marketing@boonex.com 
    18 ***************************************************************************/ 
     2/** 
     3 * @package     Dolphin Core 
     4 * @copyright   Copyright (c) BoonEx Pty Limited - http://www.boonex.com/ 
     5 * @license     CC-BY - http://creativecommons.org/licenses/by/3.0/ 
     6 */ 
    197 
    208$GLOBALS['bx_profiler_disable'] = true; 
     
    2311$aPathInfo = pathinfo(__FILE__); 
    2412require_once ($aPathInfo['dirname'] . '/../inc/header.inc.php'); 
    25 require_once(BX_DIRECTORY_PATH_INC . 'utils.inc.php'); 
    26 require_once(BX_DIRECTORY_PATH_INC . 'profiles.inc.php' ); 
    27 require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolDb.php'); 
    2813 
    2914 
     
    142127    } 
    143128    else if(!empty($aJob['eval'])) { 
    144         require_once( BX_DIRECTORY_PATH_CLASSES . 'BxDolService.php'); 
    145129        eval($aJob['eval']); 
    146130    } 
     
    157141} 
    158142 
    159 ?> 
Note: See TracChangeset for help on using the changeset viewer.