Вход Регистрация
Файл: admin/applications/core/modules_public/global/share.php
Строк: 46
<?php
/**
 * <pre>
 * Invision Power Services
 * IP.Board v3.3.3
 * Captcha
 * Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $
 * </pre>
 *
 * @author         $Author $
 * @copyright    (c) 2001 - 2009 Invision Power Services, Inc.
 * @license        http://www.invisionpower.com/company/standards.php#license
 * @package        IP.Board
 * @subpackage    Core
 * @link        http://www.invisionpower.com
 * @since        20th February 2002
 * @version        $Rev: 10721 $
 */

if ( ! defined'IN_IPB' ) )
{
    print 
"<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
    exit();
}

class 
public_core_global_share extends ipsCommand
{
    
/**
     * Class entry point
     *
     * @param    object        Registry reference
     * @return    @e void        [Outputs to screen/redirects]
     */
    
public function doExecuteipsRegistry $registry 
    {
        
/* Disabled? */
        
if ( ! $this->settings['sl_enable'] )
        {
            
$this->registry->output->showError'no_permission'100234.1falsenull403 );
        }
        
        
/* Disable for bots */
        
if( $this->member->is_not_human )
        {
            
$this->registry->output->showError'no_permission'100234.2falsenull403 );
        }
        
        
$url   IPSText::base64_decode_urlSafe$this->request['url'] );
        
$title IPSText::base64_decode_urlSafe$this->request['title'] );
        
$key   trim$this->request['key'] );
        
        
/* Get the lib */
        
$classToLoad IPSLib::loadLibraryIPS_ROOT_PATH 'sources/classes/share/links.php''share_links' );
        
$share = new $classToLoad$registry$key );
        
        
/* Share! */
        
$share->share$title$url );
    }
}
Онлайн: 1
Реклама