Skip to content
Snippets Groups Projects
Select Git revision
  • dcbdf2f8b33a5ee433157f0bab617672c20f067e
  • master default
  • develop
  • git-fixes
  • 4.1_templates-symlink
  • 4.0_templates
6 results

dashboard.php

Blame
  • dashboard.php 832 B
    <?php
    /**
    
     * Elgg default_widgets plugin.
     *
     * @package DefaultWidgets
     * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU
     * @author Milan Magudia
     * @copyright HedgeHogs.net
     * @link http://www.hedgehogs.net
     * 
     **/
    
    require_once (dirname ( dirname ( dirname ( __FILE__ ) ) ) . "/engine/start.php");
    
    // make sure only admins can view this
    admin_gatekeeper ();
    set_context ( 'admin' );
    
    // Set admin user for user block
    set_page_owner ( $_SESSION ['guid'] );
    
    // vars required for action gatekeeper
    $ts = time ();
    $token = generate_action_token ( $ts );
    $context = 'dashboard';
    
    // create the view
    $content = elgg_view ( "defaultwidgets/editor", array ('token' => $token, 'ts' => $ts, 'context' =>  $context) );
    
    // Display main admin menu
    page_draw ( 'Default dashboard widgets for new users', $content );
    ?>