當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Toolbar::archiveList方法代碼示例

本文整理匯總了PHP中Toolbar::archiveList方法的典型用法代碼示例。如果您正苦於以下問題:PHP Toolbar::archiveList方法的具體用法?PHP Toolbar::archiveList怎麽用?PHP Toolbar::archiveList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Toolbar的用法示例。


在下文中一共展示了Toolbar::archiveList方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @since	1.6
  */
 protected function addToolbar()
 {
     $state = $this->get('State');
     $canDo = ContentHelper::getActions($this->state->get('filter.category_id'));
     Toolbar::title(Lang::txt('COM_CONTENT_FEATURED_TITLE'), 'featured.png');
     if ($canDo->get('core.create')) {
         Toolbar::addNew('article.add');
     }
     if ($canDo->get('core.edit')) {
         Toolbar::editList('article.edit');
     }
     if ($canDo->get('core.edit.state')) {
         Toolbar::divider();
         Toolbar::publish('articles.publish', 'JTOOLBAR_PUBLISH', true);
         Toolbar::unpublish('articles.unpublish', 'JTOOLBAR_UNPUBLISH', true);
         Toolbar::divider();
         Toolbar::archiveList('articles.archive');
         Toolbar::checkin('articles.checkin');
         Toolbar::custom('featured.delete', 'remove.png', 'remove_f2.png', 'JTOOLBAR_REMOVE', true);
     }
     if ($state->get('filter.published') == -2 && $canDo->get('core.delete')) {
         Toolbar::deleteList('', 'articles.delete', 'JTOOLBAR_EMPTY_TRASH');
         Toolbar::divider();
     } elseif ($canDo->get('core.edit.state')) {
         Toolbar::divider();
         Toolbar::trash('articles.trash');
     }
     if ($canDo->get('core.admin')) {
         Toolbar::preferences('com_content');
         Toolbar::divider();
     }
     Toolbar::help('featured');
 }
開發者ID:mined-gatech,項目名稱:hubzero-cms,代碼行數:38,代碼來源:view.html.php

示例2: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @since	1.6
  */
 protected function addToolbar()
 {
     $state = $this->get('State');
     $canDo = NewsfeedsHelper::getActions($state->get('filter.category_id'));
     Toolbar::title(Lang::txt('COM_NEWSFEEDS_MANAGER_NEWSFEEDS'), 'newsfeeds.png');
     if (count(User::getAuthorisedCategories('com_newsfeeds', 'core.create')) > 0) {
         Toolbar::addNew('newsfeed.add');
     }
     if ($canDo->get('core.edit')) {
         Toolbar::editList('newsfeed.edit');
     }
     if ($canDo->get('core.edit.state')) {
         Toolbar::divider();
         Toolbar::publish('newsfeeds.publish', 'JTOOLBAR_PUBLISH', true);
         Toolbar::unpublish('newsfeeds.unpublish', 'JTOOLBAR_UNPUBLISH', true);
         Toolbar::divider();
         Toolbar::archiveList('newsfeeds.archive');
     }
     if ($canDo->get('core.admin')) {
         Toolbar::checkin('newsfeeds.checkin');
     }
     if ($state->get('filter.state') == -2 && $canDo->get('core.delete')) {
         Toolbar::deleteList('', 'newsfeeds.delete', 'JTOOLBAR_EMPTY_TRASH');
         Toolbar::divider();
     } elseif ($canDo->get('core.edit.state')) {
         Toolbar::trash('newsfeeds.trash');
         Toolbar::divider();
     }
     if ($canDo->get('core.admin')) {
         Toolbar::preferences('com_newsfeeds');
         Toolbar::divider();
     }
     Toolbar::help('JHELP_COMPONENTS_NEWSFEEDS_FEEDS');
 }
開發者ID:mined-gatech,項目名稱:hubzero-cms,代碼行數:39,代碼來源:view.html.php

示例3: defined

defined('_HZEXEC_') or die;
$canDo = Components\Members\Helpers\Admin::getActions('component');
// Menu
Toolbar::title(Lang::txt('COM_MEMBERS') . ': ' . Lang::txt('COM_MEMBERS_NOTES'), 'user');
if ($canDo->get('core.create')) {
    Toolbar::addNew('note.add');
}
if ($canDo->get('core.edit')) {
    Toolbar::editList('note.edit');
}
if ($canDo->get('core.edit.state')) {
    Toolbar::divider();
    Toolbar::publish('notes.publish', 'JTOOLBAR_PUBLISH', true);
    Toolbar::unpublish('notes.unpublish', 'JTOOLBAR_UNPUBLISH', true);
    Toolbar::divider();
    Toolbar::archiveList('notes.archive');
    Toolbar::checkin('notes.checkin');
}
if ($this->filters['state'] == -2 && $canDo->get('core.delete')) {
    Toolbar::deleteList('', 'notes.delete', 'JTOOLBAR_EMPTY_TRASH');
    Toolbar::divider();
} elseif ($canDo->get('core.edit.state')) {
    Toolbar::trash('notes.trash');
    Toolbar::divider();
}
if ($canDo->get('core.admin')) {
    Toolbar::preferences('com_members');
    Toolbar::divider();
}
Toolbar::help('notes');
?>
開發者ID:kevinwojo,項目名稱:hubzero-cms,代碼行數:31,代碼來源:display.php

示例4: elseif

if ($canDo->get('core.create')) {
    Toolbar::addNew();
}
if ($canDo->get('core.edit')) {
    Toolbar::editList();
}
if ($canDo->get('core.edit.state')) {
    if ($this->state->get('filter.state') != 2) {
        Toolbar::divider();
        Toolbar::publish('publish', 'JTOOLBAR_ENABLE', true);
        Toolbar::unpublish('unpublish', 'JTOOLBAR_DISABLE', true);
    }
    if ($this->state->get('filter.state') != -1) {
        Toolbar::divider();
        if ($this->state->get('filter.state') != 2) {
            Toolbar::archiveList('archive');
        } elseif ($this->state->get('filter.state') == 2) {
            Toolbar::unarchiveList('publish', 'JTOOLBAR_UNARCHIVE');
        }
    }
}
if ($this->state->get('filter.state') == -2 && $canDo->get('core.delete')) {
    Toolbar::deleteList('', 'delete', 'JTOOLBAR_EMPTY_TRASH');
    Toolbar::divider();
} elseif ($canDo->get('core.edit.state')) {
    Toolbar::trash('trash');
    Toolbar::divider();
}
if ($canDo->get('core.admin')) {
    Toolbar::preferences('com_redirect');
    Toolbar::divider();
開發者ID:sumudinie,項目名稱:hubzero-cms,代碼行數:31,代碼來源:default.php

示例5: addToolbar

 /**
  * Display the toolbar.
  *
  * @return  void
  *
  * @since   2.5
  */
 protected function addToolbar()
 {
     $canDo = UsersHelper::getActions();
     Toolbar::title(Lang::txt('COM_USERS_VIEW_NOTES_TITLE'), 'user');
     if ($canDo->get('core.create')) {
         Toolbar::addNew('note.add');
     }
     if ($canDo->get('core.edit')) {
         Toolbar::editList('note.edit');
     }
     if ($canDo->get('core.edit.state')) {
         Toolbar::divider();
         Toolbar::publish('notes.publish', 'JTOOLBAR_PUBLISH', true);
         Toolbar::unpublish('notes.unpublish', 'JTOOLBAR_UNPUBLISH', true);
         Toolbar::divider();
         Toolbar::archiveList('notes.archive');
         Toolbar::checkin('notes.checkin');
     }
     if ($this->state->get('filter.state') == -2 && $canDo->get('core.delete')) {
         Toolbar::deleteList('', 'notes.delete', 'JTOOLBAR_EMPTY_TRASH');
         Toolbar::divider();
     } elseif ($canDo->get('core.edit.state')) {
         Toolbar::trash('notes.trash');
         Toolbar::divider();
     }
     if ($canDo->get('core.admin')) {
         Toolbar::preferences('com_users');
         Toolbar::divider();
     }
     Toolbar::help('notes');
 }
開發者ID:mined-gatech,項目名稱:hubzero-cms,代碼行數:38,代碼來源:view.html.php


注:本文中的Toolbar::archiveList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。