Ignore:
Timestamp:
Mar 4, 2011, 11:26:08 AM (13 years ago)
Author:
plg
Message:

display the number of pending photos outside the dedicated admin screen (on the admin homepage, in the admin menubar, in the tab name)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/community/admin.php

    r9372 r9516  
    3030include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
    3131
    32 load_language('plugin.lang', COMMUNITY_PATH);
    33 
    3432define('COMMUNITY_BASE_URL', get_root_url().'admin.php?page=plugin-community');
    3533
     
    4442// +-----------------------------------------------------------------------+
    4543
     44$pendings_label = l10n('Pending Photos');
     45if ($page['community_nb_pendings'] > 0)
     46{
     47  $pendings_label.= ' ('.$page['community_nb_pendings'].')';
     48}
     49
    4650$tabs = array(
    4751  array(
     
    5155  array(
    5256    'code' => 'pendings',
    53     'label' => l10n('Pending Photos'),
     57    'label' => $pendings_label,
    5458    ),
    5559  );
Note: See TracChangeset for help on using the changeset viewer.