123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?php
- /**
- * Executes a TripalFieldQuery using the provided conditions.
- *
- * This hook is called to find the entities having certain field
- * conditions and sort them in the given field order.
- *
- * @param $conditions
- * An array of filter representing the conditions to be applied to the query.
- * Each filter is an associative array whose keys include the following:
- * - field: an array representing the field identical to the output of the
- * field_info_field() function.
- * - filter: the name of the field on which the filter should be applied.
- * - value: the value of the filter.
- * - operator: the operation to apply: '=', '<>', '>', '>=', '<', '<=',
- * 'STARTS_WITH', 'CONTAINS': These operators expect $value to be a
- * literal of the same type as the column. 'IN', 'NOT IN': These operators
- * expect $value to be an array of literals of the same type as the column.
- * @param $orderBy
- * An array of sorting instructions. Each sort is an associative array with
- * the following keys:
- * - field: an array representing the field identical to the output of the
- * field_info_field() function.
- * - orderBy: the name of the field on which the filter should be applied.
- * - direction: either the string 'ASC' (for ascending sort) or 'DESC' (for
- * descending).
- */
- function hook_field_storage_tquery($conditions, $orderBy) {
- // See the tripal_chado_field_storage_tquery() function for an example.
- }
- function hook_bundle_fields_info($entity_type, $bundle) {
- }
- function hook_bundle_instances_info($entity_type, $bundle) {
- }
- function hook_bundle_fields_info_alter(&$info, $bundle, $term) {
- }
- function hook_bundle_instances_info_alter(&$info, $bundle, $term) {
- }
- /**
- * Retrieves a list of TripalField types.
- *
- * The TripalField classes can be added by a site developer and should be
- * placed in the [module]/includes/TripalFields directory. Tripal will support
- * any field as long as it is in this directory and extends the TripalField
- * class. To support dynamic inclusion of new fields this function
- * will look for TripalField class files and return a type for
- * each one.
- *
- * @return
- * A list of TripalField names.
- */
- function tripal_get_field_types() {
- $types = array();
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- // Only run this for modules that are enabled.
- if (!module_exists($module)) {
- continue;
- }
- // Find all of the files in the tripal_chado/includes/TripalFields/ directory.
- $fields_path = drupal_get_path('module', $module) . '/includes/TripalFields';
- $field_files = file_scan_directory($fields_path, '/.*\.inc$/');
- // Iterate through the fields, include the file and run the info function.
- foreach ($field_files as $file) {
- // Ignore the formatter and widget classes for now.
- if (preg_match('/_formatter|_widget/', $file->name)) {
- continue;
- }
- $field_type = $file->name;
- module_load_include('inc', $module, 'includes/TripalFields/' . $field_type . '/' . $field_type);
- if (class_exists($field_type) and is_subclass_of($field_type, 'TripalField')) {
- $types[] = $field_type;
- }
- }
- }
- return $types;
- }
- /**
- * Retrieves a list of TripalFieldWidgets.
- *
- * The TripalFieldWidget classes can be added by a site developer and should be
- * placed in the [module]/includes/TripalFields directory. Tripal will support
- * any widget as long as it is in this directory and extends the
- * TripalFieldWidget class.
- *
- * @return
- * A list of TripalFieldWidget names.
- */
- function tripal_get_field_widgets() {
- $widgets = array();
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- // Only run this for modules that are enabled.
- if (!module_exists($module)) {
- continue;
- }
- // Find all of the files in the tripal_chado/includes/fields directory.
- $fields_path = drupal_get_path('module', $module) . '/includes/TripalFields';
- $field_files = file_scan_directory($fields_path, '/.*_widget\.inc$/');
- // Iterate through the fields, include the file and run the info function.
- foreach ($field_files as $file) {
- $widget_type = $file->name;
- $field_type = preg_replace('/(^.*)_widget/', '$1', $widget_type);
- module_load_include('inc', $module, 'includes/TripalFields/' . $field_type . '/' . $widget_type);
- if (class_exists($widget_type) and is_subclass_of($widget_type, 'TripalFieldWidget')) {
- $widgets[] = $widget_type;
- }
- }
- }
- return $widgets;
- }
- /**
- * Retrieves a list of TripalFieldFormatters.
- *
- * The TripalFieldFormatter classes can be added by a site developer and should
- * be placed in the [module]/includes/TripalFields directory. Tripal will
- * support any widget as long as it is in this directory and extends the
- * TripalFieldFormatter class.
- *
- * @return
- * A list of TripalFieldFormatter names.
- */
- function tripal_get_field_formatters() {
- $formatters = array();
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- // Only run this for modules that are enabled.
- if (!module_exists($module)) {
- continue;
- }
- // Find all of the files in the tripal_chado/includes/fields directory.
- $fields_path = drupal_get_path('module', $module) . '/includes/TripalFields';
- $field_files = file_scan_directory($fields_path, '/.*_formatter\.inc$/');
- // Iterate through the fields, include the file and run the info function.
- foreach ($field_files as $file) {
- $formatter_type = $file->name;
- $field_type = preg_replace('/(^.*)_formatter/', '$1', $formatter_type);
- module_load_include('inc', $module, 'includes/TripalFields/' . $field_type . '/' . $formatter_type);
- if (class_exists($formatter_type) and is_subclass_of($formatter_type, 'TripalFieldFormatter')) {
- $formatters[] = $formatter_type;
- }
- }
- }
- return $formatters;
- }
- /**
- * Loads the TripalField class file into scope.
- *
- * @param $class
- * The class to include. This can be a TripalField, TripalFieldWidget or
- * TripalFieldFormatter class name.
- *
- * @return
- * TRUE if the field type class file was found, FALSE otherwise.
- */
- function tripal_load_include_field_class($class) {
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- $field_type = preg_replace('/(^.*)_(formatter|widget)/', '$1', $class);
- $file_path = realpath(".") . '/' . drupal_get_path('module', $module) . '/includes/TripalFields/' . $field_type . '/' . $class . '.inc';
- if (file_exists($file_path)) {
- module_load_include('inc', $module, 'includes/TripalFields/' . $field_type . '/' . $class);
- if (class_exists($class)) {
- return TRUE;
- }
- }
- }
- return FALSE;
- }
- /**
- * More easily get the value of a single item from a field's items array.
- *
- * A Drupal field attached to an entity may have multiple items (i.e. it has
- * a cardinality > 1). Each of these items will always have a 'value' key that
- * contains the data for that field. However, fields can also have other keys
- * with their own values. You can easily retreive the value of these keys
- * using this function. What makes this function useful is that you can
- * provide a default value to use if the key has no value. This is useful
- * when developing a TripalField::widgetForm function and you need to
- * retreive default values and you don't want to have to always check if the
- * value is set.
- *
- * @param $items
- * The fields $items array. Compatbile with that returned by field_get_items.
- * @param $delta
- * The index of the item.
- * @parm $key
- * The name of the key within the item.
- * @param $default
- * A default value to return if the key is not set. By default the empty
- * string is returned.
- *
- * @return
- * The value assigned to the item's key; FALSE if the key doesn't exist or
- * the $default argument if no value is associated with the key.
- */
- function tripal_get_field_item_keyval($items, $delta, $key, $default='') {
- if (!array_key_exists($delta, $items)) {
- return FALSE;
- }
- if (!array_key_exists($key, $items[$delta])) {
- return FALSE;
- }
- if (!$items[$delta][$key]) {
- return $default;
- }
- return $items[$delta][$key];
- }
|