• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP entity_access函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: fetchResults

 /**
  * Implements LinkitSearchPluginInterface::fetchResults().
  */
 public function fetchResults($search_string)
 {
     // If the $search_string is not a string, something is wrong and an empty
     // array is returned.
     $matches = array();
     // Get the EntityFieldQuery instance.
     $this->getQueryInstance();
     $or = db_or();
     $or->condition('n.title', '%' . db_like($search_string) . '%', 'LIKE');
     $or->condition('bcd.name', '%' . db_like($search_string) . '%', 'LIKE');
     $or->condition('b.biblio_secondary_title', '%' . db_like($search_string) . '%', 'LIKE');
     $or->condition('bkd.word', '%' . db_like($search_string) . '%', 'LIKE');
     $this->query->condition($or);
     $this->query->orderBy('b.biblio_year', 'DESC');
     //ORDER BY created
     // Add the search condition to the query object.
     /*$this->query->propertyCondition($this->entity_field_label,
           '%' . db_like($search_string) . '%', 'LIKE')
       ->addTag('linkit_entity_autocomplete')
       ->addTag('linkit_' . $this->plugin['entity_type'] . '_autocomplete');*/
     /*
     $matches[] = array(
         'title' => $this->entity_field_label,
         'description' => '',
         'path' => '',
         'group' => '',
         'addClass' => '',
     );
     return $matches;
     */
     /*    // Add access tag for the query.
         // There is also a runtime access check that uses entity_access().
         $this->query->addTag($this->plugin['entity_type'] . '_access');
     
         // Bundle check.
         if (isset($this->entity_key_bundle) && isset($this->conf['bundles']) ) {
           $bundles = array_filter($this->conf['bundles']);
           if ($bundles) {
             $this->query->propertyCondition($this->entity_key_bundle, $bundles, 'IN');
           }
         }*/
     // Execute the query.
     $result = $this->query->execute()->fetchAllAssoc('nid');
     /*if (!isset($result[$this->plugin['entity_type']])) {
         return array();
       }*/
     $ids = array_keys($result);
     // Load all the entities with all the ids we got.
     $entities = entity_load('node', $ids);
     foreach ($entities as $key => $entity) {
         // Check the access againt the definded entity access callback.
         if (entity_access('view', 'node', $entity) === FALSE) {
             continue;
         }
         $matches[] = array('title' => biblio_remove_brace($this->createLabel($entity)), 'description' => $this->createDescription($entity) . ' <span class="name">' . $result[$key]->name . '</span>  <span class="year">' . $result[$key]->biblio_year . '</span>', 'path' => $this->createPath($entity), 'group' => $this->createGroup($entity), 'addClass' => $this->createRowClass($entity));
     }
     return $matches;
 }
开发者ID:agroknow,项目名称:water,代码行数:61,代码来源:aklinkitplugin.class.php


示例2: accessEditEntityField

 /**
  * Implements EditEntityFieldAccessCheckInterface::accessEditEntityField().
  */
 public function accessEditEntityField($entity_type, $entity, $field_name)
 {
     $is_extra_field = _quickedit_is_extra_field($entity_type, $field_name);
     $entity_access = entity_access('update', $entity_type, $entity);
     $field_access = $is_extra_field ? TRUE : field_access('edit', $field_name, $entity_type, $entity);
     return $entity_access && $field_access;
 }
开发者ID:kittiradovics,项目名称:WalkHub,代码行数:10,代码来源:EditEntityFieldAccessCheck.php


示例3: subqueues_page

 /**
  * Page callback; Displays a listing of subqueues for a queue.
  */
 public function subqueues_page($js, $input, EntityQueue $queue)
 {
     $plugin = $this->plugin;
     drupal_set_title($this->get_page_title('subqueues', $queue));
     _entityqueue_set_breadcrumb();
     $header = array(array('data' => t('Id'), 'type' => 'property', 'specifier' => 'subqueue_id', 'class' => array('entityqueue-ui-subqueue-id')), array('data' => t('Subqueue'), 'type' => 'property', 'specifier' => 'label', 'class' => array('entityqueue-ui-subqueue-label')), array('data' => t('Operations'), 'class' => array('entityqueue-ui-subqueue-operations')));
     $query = new EntityFieldQuery();
     $query->entityCondition('entity_type', $this->entityType);
     $query->entityCondition('bundle', $queue->name);
     $query->pager(50);
     $query->tableSort($header);
     $results = $query->execute();
     $ids = isset($results[$this->entityType]) ? array_keys($results[$this->entityType]) : array();
     $subqueues = $ids ? entity_load($this->entityType, $ids) : array();
     $rows = array();
     foreach ($subqueues as $subqueue) {
         $ops = array();
         if (entity_access('update', 'entityqueue_subqueue', $subqueue)) {
             $edit_op = str_replace('%entityqueue_subqueue', $subqueue->subqueue_id, ctools_export_ui_plugin_menu_path($plugin, 'edit subqueue', $queue->name));
             $ops[] = l(t('edit items'), $edit_op);
         }
         if (entity_access('delete', 'entityqueue_subqueue', $subqueue)) {
             $delete_op = str_replace('%entityqueue_subqueue', $subqueue->subqueue_id, ctools_export_ui_plugin_menu_path($plugin, 'delete subqueue', $queue->name));
             $ops[] = l(t('delete subqueue'), $delete_op);
         }
         $rows[] = array('data' => array(array('data' => $subqueue->subqueue_id, 'class' => array('entityqueue-ui-subqueue-id')), array('data' => filter_xss_admin($subqueue->label), 'class' => array('entityqueue-ui-subqueue-label')), array('data' => implode(' | ', $ops), 'class' => array('entityqueue-ui-subqueue-operations'))));
     }
     $render = array('table' => array('#theme' => 'table', '#header' => $header, '#rows' => $rows, '#empty' => t('There are no subqueues to display.')), 'pager' => array('#theme' => 'pager'));
     return $render;
 }
开发者ID:dalia-m-elsayed,项目名称:spica,代码行数:33,代码来源:entityqueue_export_ui.class.php


示例4: have_access

/**
 * Check view and edit permissions.
 *
 * @param $op
 *   The type of operation. Either 'view' or 'edit'.
 */
function have_access($op)
{
    global $user;
    $db = DBConnection::instance();
    $field_id = (int) _post('fid');
    if (!$field_id) {
        $field_id = (int) _get('fid');
    }
    $field = (object) $db->dq("SELECT entity_id, entity_type, delta FROM {mytinytodo_fields} WHERE id = ?", $field_id)->fetch_assoc();
    $field_info = field_info_field_by_id($field->delta);
    if ($field->entity_type == 'node') {
        if (!($node = node_load($field->entity_id))) {
            return false;
        }
        $node_access = $op == 'edit' ? 'update' : $op;
        if (node_access($node_access, $node, $user) && field_access($op, $field_info, $field->entity_type, $node, $user)) {
            return true;
        }
    } else {
        if ($field->entity_type == 'user') {
            if (!($account = user_load($field->entity_id))) {
                return false;
            }
            if (field_access($op, $field_info, $field->entity_type, $account, $user)) {
                return true;
            }
        } else {
            if ($field->entity_type == 'comment') {
                if (!($comment = comment_load($field->entity_id))) {
                    return false;
                }
                if ($op == 'view' && !user_access('access comments')) {
                    return false;
                } else {
                    if ($op == 'edit' && !comment_access($op, $comment)) {
                        return false;
                    }
                }
                if (field_access($op, $field_info, $field->entity_type, $comment, $user)) {
                    return true;
                }
            } else {
                if (module_exists('entity')) {
                    if (!($entity = entity_load($field_id))) {
                        return false;
                    }
                    $entity_access = $op == 'edit' ? 'update' : $op;
                    if (entity_access($entity_access, $field->entity_type, $entity, $user) && field_access($op, $field_info, $field->entity_type, $entity, $user)) {
                        return true;
                    }
                }
            }
        }
    }
    return false;
}
开发者ID:drupalconnect,项目名称:finsearches,代码行数:62,代码来源:common.php


示例5: getLabel

 /**
  * Implements EntityReferenceHandler::getLabel().
  */
 public function getLabel($entity)
 {
     return entity_access('view', 'node', $entity) ? entity_label('node', $entity) : t('- Restricted access -');
 }
开发者ID:radimklaska,项目名称:openatrium-drops-7,代码行数:7,代码来源:OaGroupsSelectionHandler.class.php


示例6: getLabel

 /**
  * Implements EntityReferenceHandler::getLabel().
  */
 public function getLabel($entity)
 {
     $target_type = $this->field['settings']['target_type'];
     return entity_access('view', $target_type, $entity) ? entity_label($target_type, $entity) : t('- Restricted access -');
 }
开发者ID:CuBoulder,项目名称:cu-express-drops-7,代码行数:8,代码来源:EntityReference_SelectionHandler_Generic.class.php


示例7: autocomplete_callback

 /**
  * The autocomplete callback function for the Linkit Entity plugin.
  *
  * @return
  *   An associative array whose values are an
  *   associative array containing:
  *   - title: A string to use as the search result label.
  *   - description: (optional) A string with additional information about the
  *     result item.
  *   - path: The URL to the item.
  *   - group: (optional) A string with the group name for the result item.
  *     Best practice is to use the plugin name as group name.
  *   - addClass: (optional) A string with classes to add to the result row.
  */
 function autocomplete_callback()
 {
     $matches = array();
     // Get the EntityFieldQuery instance.
     $this->getQueryInstance();
     // Add the search condition to the query object.
     $this->query->propertyCondition($this->entity_field_label, '%' . db_like($this->search_string) . '%', 'LIKE')->addTag('linkit_entity_autocomplete')->addTag('linkit_' . $this->plugin['entity_type'] . '_autocomplete');
     // Add access tag for the query.
     // There is also a runtime access check that uses entity_access().
     $this->query->addTag($this->plugin['entity_type'] . '_access');
     // Bundle check.
     if (isset($this->entity_key_bundle) && isset($this->conf['bundles'])) {
         if ($bundles = array_filter($this->conf['bundles'])) {
             $this->query->propertyCondition($this->entity_key_bundle, $bundles, 'IN');
         }
     }
     // Execute the query.
     $result = $this->query->execute();
     if (!isset($result[$this->plugin['entity_type']])) {
         return array();
     }
     $ids = array_keys($result[$this->plugin['entity_type']]);
     // Load all the entities with all the ids we got.
     $entities = entity_load($this->plugin['entity_type'], $ids);
     foreach ($entities as $entity) {
         // Check the access againt the definded entity access callback.
         if (entity_access('view', $this->plugin['entity_type'], $entity) === FALSE) {
             continue;
         }
         $matches[] = array('title' => $this->buildLabel($entity), 'description' => $this->buildDescription($entity), 'path' => $this->buildPath($entity), 'group' => $this->buildGroup($entity), 'addClass' => $this->buildRowClass($entity));
     }
     return $matches;
 }
开发者ID:Probo-Demos,项目名称:drupal_github,代码行数:47,代码来源:linkit-plugin-entity.class.php


示例8: checkEntityAccess

 /**
  * Check access to CRUD an entity.
  *
  * @param string $op
  *   The operation. Allowed values are "create", "update" and "delete".
  * @param string $entity_type
  *   The entity type.
  * @param object $entity
  *   The entity object.
  *
  * @return bool
  *   TRUE or FALSE based on the access. If no access is known about the entity
  *   return NULL.
  */
 protected function checkEntityAccess($op, $entity_type, $entity)
 {
     $account = $this->getAccount();
     return entity_access($op, $entity_type, $entity, $account);
 }
开发者ID:jhoffman-tm,项目名称:waldorf-deployment,代码行数:19,代码来源:DataProviderEntity.php


示例9: entity_access

 /**
  * {@inheritdoc}
  */
 public function entity_access($op, $entity)
 {
     return entity_access($op, $this->entity_type, $entity);
 }
开发者ID:drupalconnect,项目名称:finsearches,代码行数:7,代码来源:PanelizerEntityParagraphsItem.class.php


示例10: fetchResults

 /**
  * Implements LinkitSearchPluginInterface::fetchResults().
  */
 public function fetchResults($search_string)
 {
     // If the $search_string is not a string, something is wrong and an empty
     // array is returned.
     $matches = array();
     // Get the EntityFieldQuery instance.
     $this->getQueryInstance();
     // Add the search condition to the query object.
     $this->query->propertyCondition($this->entity_field_label, '%' . db_like($search_string) . '%', 'LIKE')->addTag('linkit_entity_autocomplete')->addTag('linkit_' . $this->plugin['entity_type'] . '_autocomplete');
     /*
      * DEBUGGING
      * to search a biblio node using author name 
      * search must include tables biblio_contributor_data & biblio_contributor & (biblio or node)
      * EntityFieldQuery cannot support current requirement
      * implement plain query execution and return results in the format of EntityFieldQuery ($this->query->execute() & $matches)
      * e.g. (biblio.pages.inc)
      * $db_result = db_query('SELECT bd.cid, bd.drupal_uid, bd.name, bd.lastname,
                                     bd.firstname, bd.prefix, bd.suffix,
                                     bd.initials, bd.affiliation, bd.md5, bd.literal,
                                     COUNT(*) AS cnt
                                 FROM {biblio_contributor} b
                                      LEFT JOIN {biblio_contributor_data} bd ON b.cid = bd.cid
                                      INNER JOIN {node} n on n.vid = b.vid
                                 ' . $where_clause . '
                                 GROUP BY bd.cid, bd.drupal_uid, bd.name, bd.lastname,
                                          bd.firstname, bd.prefix, bd.suffix,
                                          bd.initials, bd.affiliation, bd.md5, bd.literal
                                 ORDER BY  lastname ASC, SUBSTRING(firstname,1,1) ASC,
                                 initials ASC', array(':filter' => $filter));
      * 
     $matches[] = array(
         'title' => $this->entity_field_label,
         'description' => '',
         'path' => '',
         'group' => '',
         'addClass' => '',
     );
     return $matches;
     */
     // Add access tag for the query.
     // There is also a runtime access check that uses entity_access().
     $this->query->addTag($this->plugin['entity_type'] . '_access');
     // Bundle check.
     if (isset($this->entity_key_bundle) && isset($this->conf['bundles'])) {
         $bundles = array_filter($this->conf['bundles']);
         if ($bundles) {
             $this->query->propertyCondition($this->entity_key_bundle, $bundles, 'IN');
         }
     }
     // Execute the query.
     $result = $this->query->execute();
     if (!isset($result[$this->plugin['entity_type']])) {
         return array();
     }
     $ids = array_keys($result[$this->plugin['entity_type']]);
     // Load all the entities with all the ids we got.
     $entities = entity_load($this->plugin['entity_type'], $ids);
     foreach ($entities as $entity) {
         // Check the access againt the definded entity access callback.
         if (entity_access('view', $this->plugin['entity_type'], $entity) === FALSE) {
             continue;
         }
         $matches[] = array('title' => $this->createLabel($entity), 'description' => $this->createDescription($entity), 'path' => $this->createPath($entity), 'group' => $this->createGroup($entity), 'addClass' => $this->createRowClass($entity));
     }
     return $matches;
 }
开发者ID:VTsantilis,项目名称:water-test,代码行数:69,代码来源:entity.class.php


示例11: access

 /**
  * @see RestWSResourceControllerInterface::access()
  */
 public function access($op, $id)
 {
     // Check entity access on the original entity, not our API object (which
     // will fail).
     return entity_access($op, $this->entityType, isset($id) ? $this->originalWrapper($id)->value() : NULL);
 }
开发者ID:msound,项目名称:restws_schema,代码行数:9,代码来源:RestWSSchemaResourceController.php


示例12: hasObjectAccess

 /**
  * Whether user has access to update, view or delete the entity.
  *
  * @param string $op
  *   This can either be "update", "view" or "delete".
  *
  * @return bool
  *   TRUE if user has access and FALSE otherwise.
  */
 public function hasObjectAccess($op)
 {
     if (!in_array($op, array('update', 'view', 'delete'))) {
         return FALSE;
     }
     $entity_type = $this->getEntityType();
     if (module_exists('entity')) {
         return entity_access($op, $entity_type, $this->getEntity());
     } elseif ($entity_type == 'node') {
         return node_access($op, $this->getEntity());
     } elseif ($entity_type == 'comment' && $op == 'update') {
         return comment_access('edit', $this->getEntity());
     } elseif (($info = entity_get_info()) && isset($info[$entity_type]['access callback'])) {
         return $info[$entity_type]['access callback']($op, $this->getEntity(), NULL, $entity_type);
     }
     return FALSE;
 }
开发者ID:vishalred,项目名称:redtest-core-pw,代码行数:26,代码来源:Entity.php


示例13: entityAccess

 /**
  * {@inheritdoc}
  */
 public function entityAccess($operation = 'view')
 {
     return entity_access($operation, $this->getType(), array($this->getEntity()));
 }
开发者ID:ec-europa,项目名称:platform-dev,代码行数:7,代码来源:ViewModeTypeBase.php


示例14: isPubliclyVisible

 /**
  * @deprecated Use the entity_is_public module instead.
  */
 public static function isPubliclyVisible($entity_type, $entity, array $options = array())
 {
     $options += array('needs alias' => FALSE);
     $uri = entity_uri($entity_type, $entity);
     if (empty($uri['path'])) {
         return FALSE;
     } elseif ($options['needs alias'] && !drupal_lookup_path('alias', $uri['path'], NULL)) {
         return FALSE;
     } elseif (module_exists('rabbit_hole') && rabbit_hole_get_action($entity_type, $entity) !== RABBIT_HOLE_DISPLAY_CONTENT) {
         return FALSE;
     } else {
         return entity_access('view', $entity_type, $entity, drupal_anonymous_user());
     }
 }
开发者ID:juampynr,项目名称:DrupalCampEs,代码行数:17,代码来源:EntityHelper.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP entity_create函数代码示例发布时间:2022-05-15
下一篇:
PHP entities_to_ascii函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap