Drupal 7用に作成したカスタムモジュールは、ノードの追加/編集フォーム、コンテンツタイプの追加/編集フォーム、および管理/コンテンツドロップダウンの「フロントページへの昇格」と「リストの上部に固定」を削除します。このモジュールはデータベース設定を変更しないため、既存のコンテンツは変更されません。いつでも無効にしてオプションを取り戻すことができ、すべてが以前と同じように機能します。
このコードをhide_sticky_promote.moduleに貼り付け、対応するhide_sticky_promote.infoファイルを作成し、モジュールとwallahを有効にします。これ以上スティッキーを使用せず、チェックボックスまたはドロップダウン選択をプロモートします。
/**
* Remove sticky/promote entirely from add and edit content type forms.
*
* Implements hook_form_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_type_form_alter(&$form, &$form_state, $form_id) {
// Remove sticky/promote entirely from add and edit content type forms.
$options = array('promote', 'sticky');
foreach ($options as $key) {
unset($form['workflow']['node_options']['#options'][$key]);
}
}
/**
* Remove sticky/promote entirely from node/X/edit & node/X/add forms.
*
* Implements hook_form_BASE_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_form_alter(&$form, &$form_state, $form_id) {
$options = array('promote', 'sticky');
foreach ($options as $key) {
$form['options'][$key]['#access'] = FALSE;
}
}
/**
* Remove some sticky/promote update options on admin/content.
*
* Implements hook_form_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_admin_content_alter(&$form, &$form_state, $form_id) {
$options = array('demote', 'promote', 'sticky', 'unsticky', );
foreach ($options as $key) {
unset($form['admin']['options']['operation']['#options'][$key]);
}
}
または、ここからモジュール形式で入手してください:https : //github.com/StudioZut/hide-sticky-promote