DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
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
›
sample php-handling implementation of a panels content type plugin
Fix for sample php-handling implementation of a panels content type plugin
View
Fix
Fixes are not saved to the database until you submit.
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
/** * Note that there is NO check here to ensure that the user has the * proper permissions to execute arbitrary php code. That check * should be made at the level of the content_types callback property, * using a type of required context that we've yet to design. */ function panels_content_custom($conf, $panel_args, $context) { static $delta = 0; // Declare the $pane object so that we don't get any E_STRICT warnings; $pane = new stdClass(); eval($conf['body']); // Put our default member values into a separate array. $members = array( 'module' => 'custom', 'delta' => ++$delta, 'subject' => filter_xss_admin($conf['title']), 'content' => '', ); // Iterate through the array of defaults and assign put in // any values that haven't already been set by the custom // php code. foreach ($members as $member => $value) { if (empty($pane->$member)) { $pane->$member = $value; } } return $pane; }
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.