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


PHP InstallerViewDefault類代碼示例

本文整理匯總了PHP中InstallerViewDefault的典型用法代碼示例。如果您正苦於以下問題:PHP InstallerViewDefault類的具體用法?PHP InstallerViewDefault怎麽用?PHP InstallerViewDefault使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: display

	function display($tpl=null)
	{
		/*
		 * Set toolbar items for the page
		 */
		JToolBarHelper::deleteList( '', 'remove', 'Uninstall' );

		// Get data from the model
		$state		= &$this->get('State');
		$items		= &$this->get('Items');
		$pagination	= &$this->get('Pagination');

		$lists = new stdClass();
		$select[] = JHTML::_('select.option', '-1', JText::_('All'));
		$select[] = JHTML::_('select.option', '0', JText::_('Site Modules'));
		$select[] = JHTML::_('select.option', '1', JText::_('Admin Modules'));
		$lists->client = JHTML::_('select.genericlist',  $select, 'client', 'class="inputbox" size="1" onchange="document.adminForm.submit();"', 'value', 'text', $state->get('filter.client'));

		$this->assignRef('items',		$items);
		$this->assignRef('pagination',	$pagination);
		$this->assignRef('lists',		$lists);

		JHTML::_('behavior.tooltip');
		parent::display($tpl);
	}
開發者ID:raeldc,項目名稱:com_learn,代碼行數:25,代碼來源:view.php

示例2: display

 function display($tpl = null)
 {
     $canDo = JCKHelper::getActions();
     $app = JFactory::getApplication();
     if (!$canDo->get('jckman.install')) {
         $app->redirect(JRoute::_('index.php?option=com_jckman&view=cpanel', false), JText::_('COM_JCKMAN_PLUGIN_PERM_NO_INSTALL'), 'error');
         return false;
     }
     //end if
     /*
      * Set toolbar items for the page
      */
     $bar =& JToolBar::getInstance('toolbar');
     // Add a Link button for Control Panel
     $bar->appendButton('Link', 'cpanel', JText::_('COM_JCKMAN_SUBMENU_CPANEL_NAME'), 'index.php?option=com_jckman&controller=cpanel');
     JToolBarHelper::help('screen.installer');
     $paths = new stdClass();
     $paths->first = '';
     $lookup = array(JHTML::_('select.option', 0, JText::_('All')));
     $selections =& $this->get('ToolbarList');
     $lists['selections'] = JHTML::_('select.genericlist', $selections, 'selections[]', 'class="inputbox" size="15" multiple="multiple" style=width:182px;', 'value', 'text', $lookup, 'selections');
     $this->assignRef('paths', $paths);
     $this->assignRef('state', $this->get('state'));
     $this->assignRef('lists', $lists);
     parent::display($tpl);
 }
開發者ID:enjoy2000,項目名稱:smcd,代碼行數:26,代碼來源:view.php

示例3: addToolbar

 protected function addToolbar()
 {
     JToolBarHelper::publish('sites.publish', 'JTOOLBAR_ENABLE', true);
     JToolBarHelper::unpublish('sites.unpublish', 'JTOOLBAR_DISABLE', true);
     JToolBarHelper::divider();
     parent::addToolbar();
 }
開發者ID:rdeutz,項目名稱:square-one-cms,代碼行數:7,代碼來源:view.html.php

示例4: addToolbar

 protected function addToolbar()
 {
     JToolBarHelper::custom('oneclick.install_remote', 'upload', 'upload', 'JTOOLBAR_INSTALL', true, false);
     JToolBarHelper::custom('oneclick.find', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_FIND_EXTENSIONS', false, false);
     JToolBarHelper::custom('oneclick.purge', 'purge', 'purge', 'JTOOLBAR_PURGE_CACHE', false, false);
     JToolBarHelper::divider();
     parent::addToolbar();
 }
開發者ID:networksoft,項目名稱:seekerplus2.com,代碼行數:8,代碼來源:view.html.php

示例5: display

 function display($tpl = null)
 {
     $paths = new stdClass();
     $paths->first = '';
     $this->assignRef('paths', $paths);
     $this->assignRef('state', $this->get('state'));
     $this->_setToolbar();
     parent::display($tpl);
 }
開發者ID:joebushi,項目名稱:joomla,代碼行數:9,代碼來源:view.html.php

示例6: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   1.6
  */
 protected function addToolbar()
 {
     /*
      * Set toolbar items for the page.
      */
     JToolbarHelper::custom('database.fix', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_DATABASE_FIX', false);
     JToolbarHelper::divider();
     parent::addToolbar();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_DATABASE');
 }
開發者ID:deenison,項目名稱:joomla-cms,代碼行數:17,代碼來源:view.html.php

示例7: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @since	1.6
  */
 protected function addToolbar()
 {
     $canDo = InstallerHelper::getActions();
     JToolBarHelper::custom('update.update', 'upload', 'upload', 'COM_INSTALLER_TOOLBAR_UPDATE', true, false);
     JToolBarHelper::custom('update.find', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_FIND_UPDATES', false, false);
     JToolBarHelper::custom('update.purge', 'purge', 'purge', 'JTOOLBAR_PURGE_CACHE', false, false);
     JToolBarHelper::divider();
     parent::addToolbar();
     JToolBarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATE');
 }
開發者ID:jimyb3,項目名稱:mathematicalteachingsite,代碼行數:15,代碼來源:view.html.php

示例8: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   1.6
  */
 protected function addToolbar()
 {
     JToolbarHelper::custom('update.update', 'upload', 'upload', 'COM_INSTALLER_TOOLBAR_UPDATE', true);
     JToolbarHelper::custom('update.find', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_FIND_UPDATES', false);
     JToolbarHelper::custom('update.purge', 'purge', 'purge', 'COM_INSTALLER_TOOLBAR_PURGE', false);
     JToolbarHelper::divider();
     JHtmlSidebar::setAction('index.php?option=com_installer&view=manage');
     parent::addToolbar();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATE');
 }
開發者ID:klas,項目名稱:joomla-cms,代碼行數:17,代碼來源:view.html.php

示例9: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   1.6
  */
 protected function addToolbar()
 {
     /*
      * Set toolbar items for the page
      */
     JToolbarHelper::custom('discover.install', 'upload', 'upload', 'JTOOLBAR_INSTALL', true, false);
     JToolbarHelper::custom('discover.refresh', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_DISCOVER', false, false);
     JToolbarHelper::divider();
     parent::addToolbar();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_DISCOVER');
 }
開發者ID:fur81,項目名稱:zofaxiopeu,代碼行數:18,代碼來源:view.html.php

示例10: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   3.1
  */
 protected function addToolbar()
 {
     /*
      * Set toolbar items for the page.
      */
     JToolbarHelper::custom('discover.install', 'upload', 'upload', 'JTOOLBAR_INSTALL', true);
     JToolbarHelper::custom('discover.refresh', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_DISCOVER', false);
     JToolbarHelper::divider();
     JHtmlSidebar::setAction('index.php?option=com_installer&view=discover');
     parent::addToolbar();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_DISCOVER');
 }
開發者ID:SysBind,項目名稱:joomla-cms,代碼行數:19,代碼來源:view.html.php

示例11: display

 function display($tpl = null)
 {
     /*
      * Set toolbar items for the page
      */
     JToolBarHelper::help('screen.installer');
     $paths = new stdClass();
     $paths->first = '';
     $this->assignRef('paths', $paths);
     $this->assignRef('state', $this->get('state'));
     parent::display($tpl);
 }
開發者ID:kaantunc,項目名稱:MYK-BOR,代碼行數:12,代碼來源:view.php

示例12: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   1.6
  */
 protected function addToolbar()
 {
     JToolbarHelper::custom('update.update', 'upload', 'upload', 'COM_INSTALLER_TOOLBAR_UPDATE', true, false);
     JToolbarHelper::custom('update.find', 'refresh', 'refresh', 'COM_INSTALLER_TOOLBAR_FIND_UPDATES', false, false);
     JToolbarHelper::divider();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATE');
     JHtmlSidebar::setAction('index.php?option=com_installer&view=manage');
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_CLIENT_SELECT'), 'filter_client_id', JHtml::_('select.options', array('0' => 'JSITE', '1' => 'JADMINISTRATOR'), 'value', 'text', $this->state->get('filter.client_id'), true));
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_TYPE_SELECT'), 'filter_type', JHtml::_('select.options', InstallerHelper::getExtensionTypes(), 'value', 'text', $this->state->get('filter.type'), true));
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_FOLDER_SELECT'), 'filter_group', JHtml::_('select.options', array_merge(InstallerHelper::getExtensionGroupes(), array('*' => JText::_('COM_INSTALLER_VALUE_FOLDER_NONAPPLICABLE'))), 'value', 'text', $this->state->get('filter.group'), true));
     parent::addToolbar();
 }
開發者ID:WineWorld,項目名稱:joomlatrialcmbg,代碼行數:19,代碼來源:view.html.php

示例13: display

 function display($tpl = null)
 {
     /*
      * Set toolbar items for the page
      */
     JToolBarHelper::deleteList('', 'remove', 'Uninstall');
     JCEToolBarHelper::help('install.plugin');
     // Get data from the model
     $items =& $this->get('Items');
     $pagination =& $this->get('Pagination');
     $this->assignRef('items', $items);
     $this->assignRef('pagination', $pagination);
     parent::display($tpl);
 }
開發者ID:sangkasi,項目名稱:joomla,代碼行數:14,代碼來源:view.php

示例14: display

 function display($tpl = null)
 {
     /*
      * Set toolbar items for the page
      */
     JToolBarHelper::editHtmlX('editHTML');
     JToolBarHelper::spacer();
     JToolBarHelper::cancel('manage');
     JToolBarHelper::help('screen.installerSelectHtml');
     // Get data from the model
     $item =& $this->get('Items');
     $this->assignRef('item', $item);
     parent::showTemplateHeader();
     parent::display($tpl);
 }
開發者ID:realityking,項目名稱:rsgallery2,代碼行數:15,代碼來源:view.php

示例15: addToolbar

 /**
  * Add the page title and toolbar.
  *
  * @return  void
  *
  * @since   3.4
  */
 protected function addToolbar()
 {
     $canDo = JHelperContent::getActions('com_installer');
     if ($canDo->get('core.edit.state')) {
         JToolbarHelper::publish('updatesites.publish', 'JTOOLBAR_ENABLE', true);
         JToolbarHelper::unpublish('updatesites.unpublish', 'JTOOLBAR_DISABLE', true);
         JToolbarHelper::divider();
     }
     JHtmlSidebar::setAction('index.php?option=com_installer&view=updatesites');
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_CLIENT_SELECT'), 'filter_client_id', JHtml::_('select.options', array('0' => 'JSITE', '1' => 'JADMINISTRATOR'), 'value', 'text', $this->state->get('filter.client_id'), true));
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_STATE_SELECT'), 'filter_enabled', JHtml::_('select.options', array('0' => 'JDISABLED', '1' => 'JENABLED'), 'value', 'text', $this->state->get('filter.enabled'), true));
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_TYPE_SELECT'), 'filter_type', JHtml::_('select.options', InstallerHelper::getExtensionTypes(), 'value', 'text', $this->state->get('filter.type'), true));
     JHtmlSidebar::addFilter(JText::_('COM_INSTALLER_VALUE_FOLDER_SELECT'), 'filter_group', JHtml::_('select.options', array_merge(InstallerHelper::getExtensionGroupes(), array('*' => JText::_('COM_INSTALLER_VALUE_FOLDER_NONAPPLICABLE'))), 'value', 'text', $this->state->get('filter.group'), true));
     parent::addToolbar();
     JToolbarHelper::help('JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATESITES');
 }
開發者ID:rhellyer,項目名稱:joomla-cms,代碼行數:23,代碼來源:view.html.php


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