aboutsummaryrefslogtreecommitdiff
path: root/exif_helper
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2010-10-07 18:44:31 -0300
committerSilvio <silvio@devlet.com.br>2010-10-07 18:44:31 -0300
commitca7d08e2b8124353bc56f8dbdfc3ea32da669b7e (patch)
tree4a64378f63532ebf8c1d867d163f35c7d841f3f9 /exif_helper
parent21c3a1c6999459420a7343e4c9af2c1683bcc07d (diff)
downloadexif-ca7d08e2b8124353bc56f8dbdfc3ea32da669b7e.tar.gz
exif-ca7d08e2b8124353bc56f8dbdfc3ea32da669b7e.tar.bz2
CVS update
Diffstat (limited to 'exif_helper')
-rw-r--r--exif_helper/CVS/Entries3
-rw-r--r--exif_helper/CVS/Repository1
-rw-r--r--exif_helper/CVS/Root1
-rw-r--r--exif_helper/CVS/Tag1
-rw-r--r--exif_helper/exif_helper.info5
-rw-r--r--exif_helper/exif_helper.module80
6 files changed, 0 insertions, 91 deletions
diff --git a/exif_helper/CVS/Entries b/exif_helper/CVS/Entries
deleted file mode 100644
index 7c17ed2..0000000
--- a/exif_helper/CVS/Entries
+++ /dev/null
@@ -1,3 +0,0 @@
-/exif_helper.info/1.1.2.1/Thu Feb 5 20:11:53 2009/-kb/TDRUPAL-6--1
-/exif_helper.module/1.1.2.2/Fri Mar 19 22:17:00 2010//TDRUPAL-6--1
-D
diff --git a/exif_helper/CVS/Repository b/exif_helper/CVS/Repository
deleted file mode 100644
index 3908928..0000000
--- a/exif_helper/CVS/Repository
+++ /dev/null
@@ -1 +0,0 @@
-contributions/modules/exif/exif_helper
diff --git a/exif_helper/CVS/Root b/exif_helper/CVS/Root
deleted file mode 100644
index 127da18..0000000
--- a/exif_helper/CVS/Root
+++ /dev/null
@@ -1 +0,0 @@
-:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib
diff --git a/exif_helper/CVS/Tag b/exif_helper/CVS/Tag
deleted file mode 100644
index d7ee0a3..0000000
--- a/exif_helper/CVS/Tag
+++ /dev/null
@@ -1 +0,0 @@
-TDRUPAL-6--1
diff --git a/exif_helper/exif_helper.info b/exif_helper/exif_helper.info
deleted file mode 100644
index a63c51e..0000000
--- a/exif_helper/exif_helper.info
+++ /dev/null
@@ -1,5 +0,0 @@
-; $Id:
-name = Exif Helper
-description = "Some helper functions."
-package = Image
-core = 6.x \ No newline at end of file
diff --git a/exif_helper/exif_helper.module b/exif_helper/exif_helper.module
deleted file mode 100644
index e19ca5f..0000000
--- a/exif_helper/exif_helper.module
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-// $Id: exif_helper.module,v 1.1.2.2 2010/03/19 22:17:00 rapsli Exp $
-
-/**
- * @file Intention of this little module: exif.module needs to have a weight of -10
- * at least it has to be processed before CCK is processed, so that EXIF information
- * can be taken from the fields and be written into the CCK fields.
- *
- * Problem: We don't want to display the emty fields on node creation, since they are
- * reserved for exif information -> we don't want to confuse users with this, so are
- * going to make them hidden -> Information needs to be processed AFTER CCK.
- *
- * Solution: Creating a new little module.
- */
-
-function exif_helper_menu() {
- $items['admin/settings/exif/visibility'] = array(
- 'title' => 'visibility',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('exif_helper_settings_form'),
- 'access arguments' => array('administer site configuration'),
- 'description' => t('Some visibility settings'),
- 'access callback' => 'user_access',
- 'type' => MENU_LOCAL_TASK,
- );
- return $items;
-}
-
-/**
- * implementation of hook_form_alter
- * @param $form_id
- * @param $form
- */
-function exif_helper_form_alter(&$form, $form_state, $form_id) {
-
- if ($form['#id'] != 'node-form') {
- return;
- }
-
- $ar_keys = array();
- foreach ($form as $key => $value) {
- $ar_keys[] = array('field_name' => $key);
- }
- $exif = _exif_get_class();
- $ar_exif_fields = $exif->getExifFields($ar_keys);
- $node = $form['#node'];
-
- if (($node->nid > 0 && variable_get('exif_helper_show_on_update', 0)==0) ||
- (!isset($node->nid) && variable_get('exif_helper_show_on_creation', 0) == 0)) {
- foreach ($ar_exif_fields as $variable) {
- $form["field_" . $variable['section'] . "_" . $variable['tag']]['#type'] = 'hidden';
- }
- }
-
-}
-
-/**
- * Form definition for the admin of the helper module
- */
-function exif_helper_settings_form() {
- $form['exif_helper'] = array(
- '#value' => t('When a user creates a node by default the CCK information will not be shown.
- This doesn\'t make any sense and would only confuse the user. The values for those fields
- is taken from the picture it-self. Nevertheless the information is visibile when you display
- the node just plain or through views or whatever. We are just talking here about the actual
- creation form'),
- );
- $form['exif_helper_show_on_creation'] = array(
- '#type' => 'checkbox',
- '#title' => t('Show CCK Fields on Node-Creation form'),
- '#default_value' => variable_get('exif_helper_show_on_creation', 0),
- );
-
- $form['exif_helper_show_on_update'] = array(
- '#type' => 'checkbox',
- '#title' => t('Show CCK Fields on Node-Update form'),
- '#default_value' => variable_get('exif_helper_show_on_update', 0),
- );
- return system_settings_form($form);
-} \ No newline at end of file