当前位置: 首页>>代码示例>>PHP>>正文


PHP CommonDBRelation类代码示例

本文整理汇总了PHP中CommonDBRelation的典型用法代码示例。如果您正苦于以下问题:PHP CommonDBRelation类的具体用法?PHP CommonDBRelation怎么用?PHP CommonDBRelation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了CommonDBRelation类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getRelationMassiveActionsSpecificities

 /**
  * @since version 0.85
  *
  * @see CommonDBRelation::getRelationMassiveActionsSpecificities()
  **/
 static function getRelationMassiveActionsSpecificities()
 {
     global $CFG_GLPI;
     $specificities = parent::getRelationMassiveActionsSpecificities();
     $specificities['dropdown_method_2'] = 'dropdownUnder';
     $specificities['can_remove_all_at_once'] = false;
     return $specificities;
 }
开发者ID:Ixertec,项目名称:glpi,代码行数:13,代码来源:profile_user.class.php

示例2: getRelationMassiveActionsSpecificities

 /**
  * @since version 0.85
  *
  * @see CommonDBRelation::getRelationMassiveActionsSpecificities()
  **/
 static function getRelationMassiveActionsSpecificities()
 {
     global $CFG_GLPI;
     $specificities = parent::getRelationMassiveActionsSpecificities();
     // Set the labels for add_item and remove_item
     $specificities['button_labels']['add'] = _sx('button', 'Associate');
     $specificities['button_labels']['remove'] = _sx('button', 'Dissociate');
     return $specificities;
 }
开发者ID:jose-martins,项目名称:glpi,代码行数:14,代码来源:networkport_vlan.class.php

示例3: getRelationMassiveActionsSpecificities

 /**
  * @since version 0.85
  *
  * @see CommonDBRelation::getRelationMassiveActionsSpecificities()
  **/
 static function getRelationMassiveActionsSpecificities()
 {
     global $CFG_GLPI;
     $specificities = parent::getRelationMassiveActionsSpecificities();
     $specificities['select_items_options_1'] = array('right' => 'all');
     $specificities['select_items_options_2'] = array('condition' => '`is_usergroup`');
     // Define normalized action for add_item and remove_item
     $specificities['normalized']['add'][] = 'add_supervisor';
     $specificities['normalized']['add'][] = 'add_delegatee';
     $specificities['button_labels']['add_supervisor'] = $specificities['button_labels']['add'];
     $specificities['button_labels']['add_delegatee'] = $specificities['button_labels']['add'];
     $specificities['update_if_different'] = true;
     return $specificities;
 }
开发者ID:paisdelconocimiento,项目名称:glpi-smartcities,代码行数:19,代码来源:group_user.class.php

示例4: getRelationMassiveActionsSpecificities

 /**
  * @since version 0.85
  *
  * @see CommonDBRelation::getRelationMassiveActionsSpecificities()
  **/
 static function getRelationMassiveActionsSpecificities()
 {
     global $CFG_GLPI;
     $specificities = parent::getRelationMassiveActionsSpecificities();
     $specificities['itemtypes'] = Document::getItemtypesThatCanHave();
     // Define normalized action for add_item and remove_item
     $specificities['normalized']['add'][] = 'add_item';
     $specificities['normalized']['remove'][] = 'remove_item';
     // Set the labels for add_item and remove_item
     $specificities['button_labels']['add_item'] = $specificities['button_labels']['add'];
     $specificities['button_labels']['remove_item'] = $specificities['button_labels']['remove'];
     return $specificities;
 }
开发者ID:pvasener,项目名称:glpi,代码行数:18,代码来源:document_item.class.php

示例5: getRelationMassiveActionsSpecificities

 /**
  * @since version 0.85
  *
  * @see CommonDBRelation::getRelationMassiveActionsSpecificities()
  **/
 static function getRelationMassiveActionsSpecificities()
 {
     global $CFG_GLPI;
     $specificities = parent::getRelationMassiveActionsSpecificities();
     $specificities['itemtypes'] = $CFG_GLPI['contract_types'];
     return $specificities;
 }
开发者ID:GeorgeAlexandre,项目名称:glpi,代码行数:12,代码来源:contract_item.class.php

示例6: Ticket

 function post_addItem()
 {
     if ($this->fields['itemtype'] == 'Ticket') {
         $ticket = new Ticket();
         $ticket->update(array('id' => $this->fields['items_id'], 'date_mod' => $_SESSION["glpi_currenttime"], '_forcenotif' => true, '_donotadddocs' => true));
     }
     parent::post_addItem();
 }
开发者ID:ryukansent,项目名称:Thesis-SideB,代码行数:8,代码来源:document_item.class.php

示例7: prepareInputForAdd

 /**
  * @see CommonDBTM::prepareInputForAdd()
  **/
 function prepareInputForAdd($input)
 {
     // Avoid duplicate entry
     if (countElementsInTable($this->getTable(), ['projects_id' => $input['projects_id'], 'itemtype' => $input['itemtype'], 'items_id' => $input['items_id']]) > 0) {
         return false;
     }
     return parent::prepareInputForAdd($input);
 }
开发者ID:glpi-project,项目名称:glpi,代码行数:11,代码来源:item_project.class.php

示例8: doSpecificMassiveActions

 /**
  * @see CommonDBTM::doSpecificMassiveActions()
  **/
 function doSpecificMassiveActions($input = array())
 {
     $res = array('ok' => 0, 'ko' => 0, 'noright' => 0);
     switch ($input['action']) {
         default:
             return parent::doSpecificMassiveActions($input);
     }
     return $res;
 }
开发者ID:korial29,项目名称:tag,代码行数:12,代码来源:tagitem.class.php

示例9: prepareInputForAdd

 function prepareInputForAdd($input)
 {
     // TODO: check if the entities should not be inherited from the profile or the user
     if (!isset($input['entities_id']) || $input['entities_id'] < 0) {
         Session::addMessageAfterRedirect(__('No selected element or badly defined operation'), false, ERROR);
         return false;
     }
     return parent::prepareInputForAdd($input);
 }
开发者ID:gaforeror,项目名称:glpi,代码行数:9,代码来源:profile_user.class.php

示例10: prepareInputForAdd

 /**
  * @see CommonDBTM::prepareInputForAdd()
  **/
 function prepareInputForAdd($input)
 {
     // Avoid duplicate entry
     $restrict = " `problems_id` = '" . $input['problems_id'] . "'\n                   AND `itemtype` = '" . $input['itemtype'] . "'\n                   AND `items_id` = '" . $input['items_id'] . "'";
     if (countElementsInTable($this->getTable(), $restrict) > 0) {
         return false;
     }
     return parent::prepareInputForAdd($input);
 }
开发者ID:JULIO8,项目名称:respaldo_glpi,代码行数:12,代码来源:item_problem.class.php

示例11: Ticket

 function post_addItem()
 {
     $t = new Ticket();
     $no_stat_computation = true;
     if ($this->input['type'] == Ticket::ASSIGN) {
         $no_stat_computation = false;
     }
     $t->updateDateMod($this->fields['tickets_id'], $no_stat_computation);
     parent::post_addItem();
 }
开发者ID:ryukansent,项目名称:Thesis-SideB,代码行数:10,代码来源:group_ticket.class.php

示例12: prepareInputForAdd

 function prepareInputForAdd($input)
 {
     // Well, if I remember my PHP: empty(0) == true ...
     if (empty($input['changes_id']) || $input['changes_id'] == 0) {
         return false;
     }
     // Avoid duplicate entry
     if (countElementsInTable($this->getTable(), ['changes_id' => $input['changes_id'], 'itemtype' => $input['itemtype'], 'items_id' => $input['items_id']]) > 0) {
         return false;
     }
     return parent::prepareInputForAdd($input);
 }
开发者ID:glpi-project,项目名称:glpi,代码行数:12,代码来源:change_item.class.php

示例13: prepareInputForAdd

 function prepareInputForAdd($input)
 {
     // Well, if I remember my PHP: empty(0) == true ...
     if (empty($input['changes_id']) || $input['changes_id'] == 0) {
         return false;
     }
     // Avoid duplicate entry
     $restrict = "`changes_id` = '" . $input['changes_id'] . "'\n                   AND `itemtype` = '" . $input['itemtype'] . "'\n                   AND `items_id` = '" . $input['items_id'] . "'";
     if (countElementsInTable($this->getTable(), $restrict) > 0) {
         return false;
     }
     return parent::prepareInputForAdd($input);
 }
开发者ID:stweil,项目名称:glpi,代码行数:13,代码来源:change_item.class.php

示例14: can

 /**
  * Check right on an contract - overloaded to check max_links_allowed
  *
  * @param $ID ID of the item (-1 if new item)
  * @param $right Right to check : r / w / recursive
  * @param $input array of input data (used for adding item)
  *
  * @return boolean
  **/
 function can($ID, $right, &$input = NULL)
 {
     if ($ID < 0) {
         // Ajout
         $contract = new Contract();
         if (!$contract->getFromDB($input['contracts_id'])) {
             return false;
         }
         if ($contract->fields['max_links_allowed'] > 0 && countElementsInTable($this->getTable(), "`contracts_id`='" . $input['contracts_id'] . "'") >= $contract->fields['max_links_allowed']) {
             return false;
         }
     }
     return parent::can($ID, $right, $input);
 }
开发者ID:ryukansent,项目名称:Thesis-SideB,代码行数:23,代码来源:contract_item.class.php

示例15: can

 /**
  * Check right on an item - overloaded to check is_global
  *
  * @param $ID     ID of the item (-1 if new item)
  * @param $right  Right to check : r / w / recursive
  * @param $input  array of input data (used for adding item) (default NULL)
  *
  * @return boolean
  **/
 function can($ID, $right, array &$input = NULL)
 {
     if ($ID < 0) {
         // Ajout
         if (!($item = new $input['itemtype']())) {
             return false;
         }
         if (!$item->getFromDB($input['items_id'])) {
             return false;
         }
         if ($item->getField('is_global') == 0 && self::countForItem($ID) > 0) {
             return false;
         }
     }
     return parent::can($ID, $right, $input);
 }
开发者ID:picaro04,项目名称:simcard,代码行数:25,代码来源:simcard_item.class.php


注:本文中的CommonDBRelation类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。