rel.inc in Linkit 7.3
File
plugins/linkit_attribute/rel.incView source
<?php
/**
* @file
* Define Linkit rel attribute plugin.
*/
$plugin = array(
'name' => t('Relationship'),
'callback' => 'linkit_attribute_plugin_rel',
);
/**
* Create a FAPI element.
*
* @param array $plugin
* This is the plugin definition.
*
* @param array $settings
* An array of settings for this attribute. This is from the profile settings.
*
* @return
* An FAPI element.
*
* @see LinkitProfile::setAttributes()
*/
function linkit_attribute_plugin_rel($plugin, $settings = array()) {
return array(
'#type' => 'textfield',
'#title' => $plugin['name'],
'#maxlength' => 255,
'#size' => 40,
'#default_value' => '',
'#weight' => isset($settings['weight']) ? $settings['weight'] : 0,
);
}
Functions
Name | Description |
---|---|
linkit_attribute_plugin_rel | Create a FAPI element. |