12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268 |
- <?php
- define('EXPORT_IN_DATABASE', 0x01);
- define('EXPORT_IN_CODE', 0x02);
- function ctools_export_crud_new($table, $set_defaults = TRUE) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['create callback']) && function_exists($export['create callback'])) {
- return $export['create callback']($set_defaults);
- }
- else {
- return ctools_export_new_object($table, $set_defaults);
- }
- }
- function ctools_export_crud_load($table, $name) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['load callback']) && function_exists($export['load callback'])) {
- return $export['load callback']($name);
- }
- else {
- $result = ctools_export_load_object($table, 'names', array($name));
- if (isset($result[$name])) {
- return $result[$name];
- }
- }
- }
- function ctools_export_crud_load_multiple($table, array $names) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- $results = array();
- if (!empty($export['load multiple callback']) && function_exists($export['load multiple callback'])) {
- $results = $export['load multiple callback']($names);
- }
- else {
- $results = ctools_export_load_object($table, 'names', $names);
- }
-
- return array_filter($results);
- }
- function ctools_export_crud_load_all($table, $reset = FALSE) {
- $schema = ctools_export_get_schema($table);
- if (empty($schema['export'])) {
- return array();
- }
- $export = $schema['export'];
- if ($reset) {
- ctools_export_load_object_reset($table);
- }
- if (!empty($export['load all callback']) && function_exists($export['load all callback'])) {
- return $export['load all callback']($reset);
- }
- else {
- return ctools_export_load_object($table, 'all');
- }
- }
- function ctools_export_crud_save($table, &$object) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['save callback']) && function_exists($export['save callback'])) {
- return $export['save callback']($object);
- }
- else {
-
- if (empty($export['primary key'])) {
- return FALSE;
- }
- $key = $export['primary key'];
- if ($object->export_type & EXPORT_IN_DATABASE) {
-
- $update = array($key);
- }
- else {
-
- $update = array();
- $object->export_type = EXPORT_IN_DATABASE;
- }
- return drupal_write_record($table, $object, $update);
- }
- }
- function ctools_export_crud_delete($table, $object) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['delete callback']) && function_exists($export['delete callback'])) {
- return $export['delete callback']($object);
- }
- else {
-
-
- $value = is_object($object) ? $object->{$export['key']} : $object;
- db_delete($table)
- ->condition($export['key'], $value)
- ->execute();
- }
- }
- function ctools_export_crud_export($table, $object, $indent = '') {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['export callback']) && function_exists($export['export callback'])) {
- return $export['export callback']($object, $indent);
- }
- else {
- return ctools_export_object($table, $object, $indent);
- }
- }
- function ctools_export_crud_import($table, $code) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['import callback']) && function_exists($export['import callback'])) {
- return $export['import callback']($code);
- }
- else {
- ob_start();
- eval($code);
- ob_end_clean();
- if (empty(${$export['identifier']})) {
- $errors = ob_get_contents();
- if (empty($errors)) {
- $errors = t('No item found.');
- }
- return $errors;
- }
- $item = ${$export['identifier']};
-
-
- $item->export_type = NULL;
- $item->{$export['export type string']} = t('Local');
- return $item;
- }
- }
- function ctools_export_crud_set_status($table, $object, $status) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!empty($export['status callback']) && function_exists($export['status callback'])) {
- $export['status callback']($object, $status);
- }
- else {
- if (is_object($object)) {
- ctools_export_set_object_status($object, $status);
- }
- else {
- ctools_export_set_status($table, $object, $status);
- }
- }
- }
- function ctools_export_crud_enable($table, $object) {
- return ctools_export_crud_set_status($table, $object, FALSE);
- }
- function ctools_export_crud_disable($table, $object) {
- return ctools_export_crud_set_status($table, $object, TRUE);
- }
- function ctools_export_load_object($table, $type = 'all', $args = array()) {
- $cache = &drupal_static(__FUNCTION__);
- $cache_table_exists = &drupal_static(__FUNCTION__ . '_table_exists', array());
- $cached_database = &drupal_static('ctools_export_load_object_all');
- if (!array_key_exists($table, $cache_table_exists)) {
- $cache_table_exists[$table] = db_table_exists($table);
- }
- $schema = ctools_export_get_schema($table);
- if (empty($schema) || !$cache_table_exists[$table]) {
- return array();
- }
- $export = $schema['export'];
- if (!isset($cache[$table])) {
- $cache[$table] = array();
- }
-
- if ($type == 'all' && !empty($cached_database[$table])) {
- return $cache[$table];
- }
- $return = array();
-
- if ($type == 'names' && !empty($args)) {
- foreach ($args as $id => $name) {
- if (isset($cache[$table][$name])) {
- $return[$name] = $cache[$table][$name];
- unset($args[$id]);
- }
- }
-
- if (empty($args)) {
- return $return;
- }
- }
-
- $query = db_select($table, 't__0')->fields('t__0');
- $alias_count = 1;
- if (!empty($schema['join'])) {
- foreach ($schema['join'] as $join_key => $join) {
- if ($join_schema = drupal_get_schema($join['table'])) {
- $query->join($join['table'], 't__' . $alias_count, 't__0.' . $join['left_key'] . ' = ' . 't__' . $alias_count . '.' . $join['right_key']);
- $query->fields('t__' . $alias_count);
- $alias_count++;
-
- if (isset($join['callback']) && function_exists($join['callback'])) {
- $join['callback']($query, $schema, $join_schema);
- }
- }
- }
- }
- $conditions = array();
- $query_args = array();
-
- if ($type == 'names') {
- $query->condition($export['key'], $args, 'IN');
- }
- else if ($type == 'conditions') {
- foreach ($args as $key => $value) {
- if (isset($schema['fields'][$key])) {
- $query->condition($key, $value);
- }
- }
- }
- $result = $query->execute();
- $status = variable_get($export['status'], array());
-
- foreach ($result as $data) {
- if (isset($schema['export']['object factory']) && function_exists($schema['export']['object factory'])) {
- $object = $schema['export']['object factory']($schema, $data);
- }
- else {
- $object = _ctools_export_unpack_object($schema, $data, $export['object']);
- }
- $object->table = $table;
- $object->{$export['export type string']} = t('Normal');
- $object->export_type = EXPORT_IN_DATABASE;
-
- if (isset($status[$object->{$export['key']}])) {
- $object->disabled = $status[$object->{$export['key']}];
- }
- $cache[$table][$object->{$export['key']}] = $object;
- if ($type == 'conditions') {
- $return[$object->{$export['key']}] = $object;
- }
- }
-
- if (isset($export['subrecords callback']) && function_exists($export['subrecords callback'])) {
- $export['subrecords callback']($cache[$table]);
- }
- if ($type == 'names' && !empty($args) && !empty($export['cache defaults'])) {
- $defaults = _ctools_export_get_some_defaults($table, $export, $args);
- }
- else {
- $defaults = _ctools_export_get_defaults($table, $export);
- }
- if ($defaults) {
- foreach ($defaults as $object) {
- if ($type == 'conditions') {
-
- foreach ($args as $key => $value) {
- if (!isset($object->$key)) {
- continue 2;
- }
- if (is_array($value)) {
- if (!in_array($object->$key, $value)) {
- continue 2;
- }
- }
- else if ($object->$key != $value) {
- continue 2;
- }
- }
- }
- else if ($type == 'names') {
- if (!in_array($object->{$export['key']}, $args)) {
- continue;
- }
- }
-
- if (isset($status[$object->{$export['key']}])) {
- $object->disabled = $status[$object->{$export['key']}];
- }
- if (!empty($cache[$table][$object->{$export['key']}])) {
- $cache[$table][$object->{$export['key']}]->{$export['export type string']} = t('Overridden');
- $cache[$table][$object->{$export['key']}]->export_type |= EXPORT_IN_CODE;
- $cache[$table][$object->{$export['key']}]->export_module = isset($object->export_module) ? $object->export_module : NULL;
- if ($type == 'conditions') {
- $return[$object->{$export['key']}] = $cache[$table][$object->{$export['key']}];
- }
- }
- else {
- $object->{$export['export type string']} = t('Default');
- $object->export_type = EXPORT_IN_CODE;
- $object->in_code_only = TRUE;
- $object->table = $table;
- $cache[$table][$object->{$export['key']}] = $object;
- if ($type == 'conditions') {
- $return[$object->{$export['key']}] = $object;
- }
- }
- }
- }
-
- if ($type == 'all') {
- $cached_database[$table] = TRUE;
- return $cache[$table];
- }
- if ($type == 'names') {
- foreach ($args as $name) {
- if (isset($cache[$table][$name])) {
- $return[$name] = $cache[$table][$name];
- }
- }
- }
-
- return $return;
- }
- function ctools_export_load_object_reset($table = NULL) {
-
- ctools_include('plugins');
- ctools_get_plugins_reset();
- if (empty($table)) {
- drupal_static_reset('ctools_export_load_object');
- drupal_static_reset('ctools_export_load_object_all');
- drupal_static_reset('_ctools_export_get_defaults');
- }
- else {
- $cache = &drupal_static('ctools_export_load_object');
- $cached_database = &drupal_static('ctools_export_load_object_all');
- $cached_defaults = &drupal_static('_ctools_export_get_defaults');
- unset($cache[$table]);
- unset($cached_database[$table]);
- unset($cached_defaults[$table]);
- }
- }
- function ctools_get_default_object($table, $name) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- if (!$export['default hook']) {
- return;
- }
-
- if (!empty($export['cache defaults'])) {
- $defaults = _ctools_export_get_some_defaults($table, $export, array($name));
- }
- else {
- $defaults = _ctools_export_get_defaults($table, $export);
- }
- $status = variable_get($export['status'], array());
- if (!isset($defaults[$name])) {
- return;
- }
- $object = $defaults[$name];
-
- if (isset($status[$object->{$export['key']}])) {
- $object->disabled = $status[$object->{$export['key']}];
- }
- $object->{$export['export type string']} = t('Default');
- $object->export_type = EXPORT_IN_CODE;
- $object->in_code_only = TRUE;
- return $object;
- }
- function _ctools_export_get_defaults($table, $export) {
- $cache = &drupal_static(__FUNCTION__, array());
-
- if (!isset($cache[$table]) && !empty($export['cache defaults'])) {
- $cache[$table] = _ctools_export_get_defaults_from_cache($table, $export);
- }
- if (!isset($cache[$table])) {
-
-
-
- if (!empty($export['cache defaults'])) {
- for ($counter = 0; !($lock = lock_acquire('ctools_export:' . $table)) && $counter > 5; $counter++) {
- lock_wait('ctools_export:' . $table, 1);
- ++$counter;
- }
- }
- $cache[$table] = array();
- if ($export['default hook']) {
- if (!empty($export['api'])) {
- ctools_include('plugins');
- $info = ctools_plugin_api_include($export['api']['owner'], $export['api']['api'],
- $export['api']['minimum_version'], $export['api']['current_version']);
- $modules = array_keys($info);
- }
- else {
- $modules = module_implements($export['default hook']);
- }
- foreach ($modules as $module) {
- $function = $module . '_' . $export['default hook'];
- if (function_exists($function)) {
- foreach ((array) $function($export) as $name => $object) {
-
- $object->export_module = $module;
- if (empty($export['api'])) {
- $cache[$table][$name] = $object;
- }
- else {
-
- if (isset($object->api_version) &&
- version_compare($object->api_version, $export['api']['minimum_version']) >= 0 &&
- version_compare($object->api_version, $export['api']['current_version']) <= 0) {
- $cache[$table][$name] = $object;
- }
- }
- }
- }
- }
- drupal_alter($export['default hook'], $cache[$table]);
-
-
- if (!empty($lock)) {
-
- $index = array_keys($cache[$table]);
- cache_set('ctools_export_index:' . $table, $index, $export['default cache bin']);
-
- foreach ($cache[$table] as $name => $object) {
- cache_set('ctools_export:' . $table . ':' . $name, $object, $export['default cache bin']);
- }
- lock_release('ctools_export:' . $table);
- }
- }
- }
- return $cache[$table];
- }
- function _ctools_export_get_defaults_from_cache($table, $export) {
- $data = cache_get('ctools_export_index:' . $table, $export['default cache bin']);
- if (!$data || !is_array($data->data)) {
- return;
- }
-
-
- if (empty($data->data)) {
- return array();
- }
- $keys = array();
- foreach ($data->data as $name) {
- $keys[] = 'ctools_export:' . $table . ':' . $name;
- }
- $data = cache_get_multiple($keys, $export['default cache bin']);
-
-
- if (!empty($keys)) {
- return;
- }
-
- $cache = array();
- foreach ($data as $cached_object) {
- $cache[$cached_object->data->{$export['key']}] = $cached_object->data;
- }
- return $cache;
- }
- function _ctools_export_get_some_defaults($table, $export, $names) {
- foreach ($names as $name) {
- $keys[] = 'ctools_export:' . $table . ':' . $name;
- }
- $data = cache_get_multiple($keys, $export['default cache bin']);
-
-
- if (!empty($keys)) {
- return _ctools_export_get_defaults($table, $export);
- }
-
- $cache = array();
- foreach ($data as $cached_object) {
- $cache[$cached_object->data->{$export['key']}] = $cached_object->data;
- }
- return $cache;
- }
- function _ctools_export_unpack_object($schema, $data, $object = 'stdClass') {
- if (is_string($object)) {
- if (class_exists($object)) {
- $object = new $object;
- }
- else {
- $object = new stdClass;
- }
- }
-
- foreach ($schema['fields'] as $field => $info) {
- if (isset($data->$field)) {
- $object->$field = empty($info['serialize']) ? $data->$field : unserialize($data->$field);
- }
- else {
- $object->$field = NULL;
- }
- }
- if (isset($schema['join'])) {
- foreach ($schema['join'] as $join_key => $join) {
- $join_schema = ctools_export_get_schema($join['table']);
- if (!empty($join['load'])) {
- foreach ($join['load'] as $field) {
- $info = $join_schema['fields'][$field];
- $object->$field = empty($info['serialize']) ? $data->$field : unserialize($data->$field);
- }
- }
- }
- }
- return $object;
- }
- function ctools_export_unpack_object($table, $data) {
- $schema = ctools_export_get_schema($table);
- return _ctools_export_unpack_object($schema, $data, $schema['export']['object']);
- }
- function ctools_var_export($var, $prefix = '') {
- if (is_array($var)) {
- if (empty($var)) {
- $output = 'array()';
- }
- else {
- $output = "array(\n";
- foreach ($var as $key => $value) {
- $output .= $prefix . " " . ctools_var_export($key) . " => " . ctools_var_export($value, $prefix . ' ') . ",\n";
- }
- $output .= $prefix . ')';
- }
- }
- else if (is_object($var) && get_class($var) === 'stdClass') {
-
-
-
-
- $output = '(object) ' . ctools_var_export((array) $var, $prefix);
- }
- else if (is_bool($var)) {
- $output = $var ? 'TRUE' : 'FALSE';
- }
- else {
- $output = var_export($var, TRUE);
- }
- return $output;
- }
- function ctools_export_object($table, $object, $indent = '', $identifier = NULL, $additions = array(), $additions2 = array()) {
- $schema = ctools_export_get_schema($table);
- if (!isset($identifier)) {
- $identifier = $schema['export']['identifier'];
- }
- $output = $indent . '$' . $identifier . ' = new ' . get_class($object) . "();\n";
- if ($schema['export']['can disable']) {
- $disabled = !isset($object->disabled) || $object->disabled != TRUE ? 'FALSE' : 'TRUE';
- $output .= $indent . '$' . $identifier . '->disabled = ' . $disabled . '; /* Edit this to true to make a default ' . $identifier . ' disabled initially */' . "\n";
- }
- if (!empty($schema['export']['api']['current_version'])) {
- $output .= $indent . '$' . $identifier . '->api_version = ' . $schema['export']['api']['current_version'] . ";\n";
- }
-
- foreach ($additions as $field => $value) {
- $output .= $indent . '$' . $identifier . '->' . $field . ' = ' . ctools_var_export($value, $indent) . ";\n";
- }
- $fields = $schema['fields'];
- if (!empty($schema['join'])) {
- foreach ($schema['join'] as $join) {
- if (!empty($join['load'])) {
- foreach ($join['load'] as $join_field) {
- $fields[$join_field] = $join['fields'][$join_field];
- }
- }
- }
- }
-
- foreach ($fields as $field => $info) {
- if (!empty($info['no export'])) {
- continue;
- }
- if (!isset($object->$field)) {
- if (isset($info['default'])) {
- $object->$field = $info['default'];
- }
- else {
- $object->$field = '';
- }
- }
-
- if (!empty($info['export callback']) && function_exists($info['export callback'])) {
- $output .= $indent . '$' . $identifier . '->' . $field . ' = ' . $info['export callback']($object, $field, $object->$field, $indent) . ";\n";
- }
- else {
- $value = $object->$field;
- if ($info['type'] == 'int') {
- if (isset($info['size']) && $info['size'] == 'tiny') {
- $info['boolean'] = (!isset($info['boolean'])) ? $schema['export']['boolean'] : $info['boolean'];
- $value = ($info['boolean']) ? (bool) $value : (int) $value;
- }
- else {
- $value = (int) $value;
- }
- }
- $output .= $indent . '$' . $identifier . '->' . $field . ' = ' . ctools_var_export($value, $indent) . ";\n";
- }
- }
-
- foreach ($additions2 as $field => $value) {
- $output .= $indent . '$' . $identifier . '->' . $field . ' = ' . ctools_var_export($value, $indent) . ";\n";
- }
- return $output;
- }
- function ctools_export_get_schema($table) {
- static $drupal_static_fast;
- if (!isset($drupal_static_fast)) {
- $drupal_static_fast['cache'] = &drupal_static(__FUNCTION__);
- }
- $cache = &$drupal_static_fast['cache'];
- if (empty($cache[$table])) {
- $schema = drupal_get_schema($table);
-
-
-
- if (!$schema || empty($schema['export'])) {
-
- $schema = drupal_get_schema($table, TRUE);
- }
- if (!isset($schema['export'])) {
- return array();
- }
- if (empty($schema['module'])) {
- return array();
- }
-
- $schema['export'] += array(
- 'key' => 'name',
- 'key name' => 'Name',
- 'object' => 'stdClass',
- 'status' => 'default_' . $table,
- 'default hook' => 'default_' . $table,
- 'can disable' => TRUE,
- 'identifier' => $table,
- 'primary key' => !empty($schema['primary key']) ? $schema['primary key'][0] : '',
- 'bulk export' => TRUE,
- 'list callback' => "$schema[module]_{$table}_list",
- 'to hook code callback' => "$schema[module]_{$table}_to_hook_code",
- 'cache defaults' => FALSE,
- 'default cache bin' => 'cache',
- 'export type string' => 'type',
- 'boolean' => TRUE,
- );
-
-
- if (empty($schema['export']['primary key']) && user_access('administer site configuration')) {
- drupal_set_message(t('The export definition of @table is missing the "primary key" property.', array('@table' => $table)), 'error');
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $cache[$table] = $schema;
- }
- return $cache[$table];
- }
- function ctools_export_get_schemas($for_export = FALSE) {
- $export_tables = &drupal_static(__FUNCTION__);
- if (is_null($export_tables)) {
- $export_tables = array();
- $schemas = drupal_get_schema();
- foreach ($schemas as $table => $schema) {
- if (!isset($schema['export'])) {
- unset($schemas[$table]);
- continue;
- }
- $export_tables[$table] = ctools_export_get_schema($table);
- }
- }
- return $for_export ? array_filter($export_tables, '_ctools_export_filter_export_tables') : $export_tables;
- }
- function _ctools_export_filter_export_tables($schema) {
- return !empty($schema['export']['bulk export']);
- }
- function ctools_export_get_schemas_by_module($modules = array(), $for_export = FALSE) {
- $export_tables = array();
- $list = ctools_export_get_schemas($for_export);
- foreach ($list as $table => $schema) {
- $export_tables[$schema['module']][$table] = $schema;
- }
- return empty($modules) ? $export_tables : array_keys($export_tables, $modules);
- }
- function ctools_export_set_status($table, $name, $new_status = TRUE) {
- $schema = ctools_export_get_schema($table);
- $status = variable_get($schema['export']['status'], array());
- $status[$name] = $new_status;
- variable_set($schema['export']['status'], $status);
- }
- function ctools_export_set_object_status($object, $new_status = TRUE) {
- $table = $object->table;
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- $status = variable_get($export['status'], array());
-
- if (!$new_status && $object->export_type & EXPORT_IN_DATABASE) {
- unset($status[$object->{$export['key']}]);
- }
- else {
- $status[$object->{$export['key']}] = $new_status;
- }
- variable_set($export['status'], $status);
- }
- function ctools_export_form($form, &$form_state, $code, $title = '') {
- $lines = substr_count($code, "\n");
- $form['code'] = array(
- '#type' => 'textarea',
- '#title' => $title,
- '#default_value' => $code,
- '#rows' => $lines,
- );
- return $form;
- }
- function ctools_export_new_object($table, $set_defaults = TRUE) {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
- $object = new $export['object'];
- foreach ($schema['fields'] as $field => $info) {
- if (isset($info['object default'])) {
- $object->$field = $info['object default'];
- }
- else if (isset($info['default'])) {
- $object->$field = $info['default'];
- }
- else {
- $object->$field = NULL;
- }
- }
- if ($set_defaults) {
-
-
-
- $object->export_type = NULL;
- $object->{$export['export type string']} = t('Local');
- }
- return $object;
- }
- function ctools_export_to_hook_code(&$code, $table, $names = array(), $name = 'foo') {
- $schema = ctools_export_get_schema($table);
- $export = $schema['export'];
-
- if (function_exists($export['to hook code callback'])) {
- $output = $export['to hook code callback']($names, $name);
- }
-
- else {
- $output = ctools_export_default_to_hook_code($schema, $table, $names, $name);
- }
- if (!empty($output)) {
- if (isset($export['api'])) {
- if (isset($code[$export['api']['owner']][$export['api']['api']]['version'])) {
- $code[$export['api']['owner']][$export['api']['api']]['version'] = max($code[$export['api']['owner']][$export['api']['api']]['version'], $export['api']['minimum_version']);
- }
- else {
- $code[$export['api']['owner']][$export['api']['api']]['version'] = $export['api']['minimum_version'];
- $code[$export['api']['owner']][$export['api']['api']]['code'] = '';
- }
- $code[$export['api']['owner']][$export['api']['api']]['code'] .= $output;
- }
- else {
- if (empty($code['general'])) {
- $code['general'] = '';
- }
- $code['general'] .= $output;
- }
- }
- }
- function ctools_export_default_to_hook_code($schema, $table, $names, $name) {
- $export = $schema['export'];
- $output = '';
- $objects = ctools_export_crud_load_multiple($table, $names);
- if ($objects) {
- $output = "/**\n";
- $output .= " * Implements hook_{$export['default hook']}().\n";
- $output .= " */\n";
- $output .= "function " . $name . "_{$export['default hook']}() {\n";
- $output .= " \${$export['identifier']}s = array();\n\n";
- foreach ($objects as $object) {
- $output .= ctools_export_crud_export($table, $object, ' ');
- $output .= " \${$export['identifier']}s['" . check_plain($object->{$export['key']}) . "'] = \${$export['identifier']};\n\n";
- }
- $output .= " return \${$export['identifier']}s;\n";
- $output .= "}\n";
- }
- return $output;
- }
- function ctools_export_default_list($table, $schema) {
- $list = array();
- $items = ctools_export_crud_load_all($table);
- $export_key = $schema['export']['key'];
- foreach ($items as $item) {
-
- $keys = array('admin_title', 'title');
- if (isset($schema['export']['admin_title'])) {
- array_unshift($keys, $schema['export']['admin_title']);
- }
- $string = '';
- foreach ($keys as $key) {
- if (!empty($item->$key)) {
- $string = $item->$key . " (" . $item->$export_key . ")";
- break;
- }
- }
- if (empty($string)) {
- $string = $item->$export_key;
- }
- $list[$item->$export_key] = check_plain($string);
- }
- return $list;
- }
|