Hi, David!

In the civicspace.inc file, there is a section that generates some simple site statistics. I would like to take that output and group it inside one of the panels (in this case, "Manage web site and users"). I "thought" the way to do this would be to create another item under the panel, like:

      '' => array( // don't need a path, since this is just for display purposes
        'title' => theme('administration_statistics'),
        'class' => 'dashboard-statistics',
      ),

This didn't work (not that I expected it to on my first try ;)), however I couldn't seem to add _any_ paths, even something as simple as:

      'node/add' => array(
        'title' => t('create content'),
        'description' => t('Add content to your site.'),
        'class' => 'dashboard-admin',
      ),

Any idea what I might be missing, and/or some tips on how I could get this to work as I want it?

Thanks very much in advance! :)

Comments

webchick’s picture

Status: Active » Closed (fixed)

Nevermind; was able to work out a solution.