target.inc in Linkit 7.3
File
plugins/linkit_attribute/target.inc
View source
<?php
$plugin = array(
'name' => t('Target'),
'callback' => 'linkit_attribute_plugin_target',
);
function linkit_attribute_plugin_target($plugin, $settings = array()) {
return array(
'#type' => 'select',
'#title' => $plugin['name'],
'#options' => array(
'' => '',
'_blank' => t('New window (_blank)'),
'_top' => t('Top window (_top)'),
'_self' => t('Same window (_self)'),
'_parent' => t('Parent window (_parent)'),
),
'#weight' => isset($settings['weight']) ? $settings['weight'] : 0,
);
}