DrupalBin
Submit Code
About
Recent Posts
Serializable closures
Closures in menu item arguments
dpr($content['field_headshot'])
Fix for Git push error
Проверка
Code
$item['title'] = $item['title'];
Loading specific field
expire give non-aliased paths
Fix for Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
CCK
query to translate to view relationship
April 17, 2012 - 10:58am — Anonymous
SELECT
d.faculty_area
,
d.indicator_id
,
d1.faculty_area
,
d1.indicator_id
,
d2.faculty_area
,
d2.indicator_id
,
n.
*
FROM
`node`
n
LEFT
JOIN
qs_survey_data d
ON
(
d.nid
=
n.nid
)
LEFT
JOIN
qs_surv
CCK
hook_view_data
views
Read more
Fix for Fix for Making conditional fields with Drupal, CCK, and jQuery.
April 10, 2012 - 10:57am — Anonymous
Making conditional fields with Drupal, CCK, and jQuery.
by MatteusX
I
'll be posting this as a handbook page at Drupal.org.
The Conditional Fields (http://drupal.org/project/conditional_fields
CCK
javascript
jquery
Read more
Fix for Insterting cck multiple value fields into a views list. hkhj
November 8, 2011 - 11:38am — Anonymous
ok i have this in my views.tpl.php file
<?php
print
$field_property_images_fid
[
'views_image'
]
[
'0'
]
[
'view'
]
?>
and i did a
<?php
print_r
(
$field_property_images_fid
)
;
?>
and when it printed it
CCK
views
Read more
Fix for Fix for Fix for Load array content into multi valued field
September 11, 2011 - 2:14pm — Anonymous
<?php
/**
* @file
* isbn2node module
*/
// Define the url's for fetching ISBN-data
define
(
'ISBN2NODE_ISBNDB_URL'
,
'http://isbndb.com/api/books.xml?access_key=%access_key&results=detail
array
CCK
field
multivalued field
Read more
Fix for Fix for Load array content into multi valued field
September 11, 2011 - 2:12pm — Anonymous
<?php
/**
* @file
* isbn2node module
*/
// Define the url's for fetching ISBN-data
define
(
'ISBN2NODE_ISBNDB_URL'
,
'http://isbndb.com/api/books.xml?access_key=%access_key&results=detail
array
CCK
field
multivalued field
Read more
Fix for Load array content into multi valued field
September 11, 2011 - 2:11pm — Anonymous
case
'isbn2node_author'
:
$authors_array
=
explode
(
','
,
$default_value
)
;
sort
(
$authors_array
)
;
$rows
=
0
;
for
(
$index
=
0
;
$index
<
co
array
CCK
field
multivalued field
Read more
Load array content into multi valued field
September 11, 2011 - 2:02pm — Anonymous
case
'isbn2node_author'
:
$authors_array
=
explode
(
','
,
$default_value
)
;
sort
(
$authors_array
)
;
$rows
=
0
;
for
(
$index
=
0
;
$index
<
co
array
CCK
field
multivalued field
Read more
Fix for looping through CCK Matrix to provide a view for each field
June 28, 2011 - 12:36am — Anonymous
foreach
(
array
(
1,2,3,4
)
as $matrixrow
)
{
foreach
(
array
(
1
,
2
)
as $matrixcol
)
{
$matrixindex = $matrixrow.
'_'
.$matrixcol;
$table =
array
(
'name'
=
>
'node_field_matrix_data'
CCK
matrix
views
Read more
Fix for Making conditional fields with Drupal, CCK, and jQuery.
April 20, 2011 - 1:34am — Anonymous
Making conditional fields with Drupal, CCK, and jQuery.
by MatteusX
I'll be posting this as a handbook page at Drupal.org.
The Conditional Fields (http://drupal.org/project/conditional_fields
CCK
javascript
jquery
Read more
field_body to replace node field views handler
March 22, 2011 - 2:18am — Anonymous
/**
* Implementation of hook_views_data_alter().
*
* Currently this code is not pulling in content_field_body when the body field is used,
* instead, it just tries to find node_revisions.field
CCK
views
Read more
1
2
3
4
5
6
7
8
9
…
next ›
last »