groups/modules/commons/commons_posts/commons_posts.install
Marton Kiss 8ac59801be Refactor commons build process
Update commons modules to release 7.12, and move the codebase under
modules/commons instead of constant fetching from remote repository.
The commons.make file removed so it is not required to rebuild
groups distribution.

Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
2014-05-28 15:58:33 +02:00

79 lines
1.5 KiB
Plaintext

<?php
/**
* Disable summary on Posts nodes.
*/
function commons_posts_update_7000() {
$revert = array(
'commons_posts' => array('field_instance'),
);
features_revert($revert);
return array();
}
/**
* Provide a new "User posted [title]" message type for posts.
*/
function commons_posts_update_7001() {
$revert = array(
'commons_posts' => array('message_type', 'field_instance'),
);
features_revert($revert);
return array();
}
/**
* Remove extra markup from message type for posts.
*/
function commons_posts_update_7002() {
$revert = array(
'commons_posts' => array('message_type'),
);
features_revert($revert);
return array();
}
/**
* Standardize Browsing Widget views.
*/
function commons_posts_update_7003() {
$revert = array(
'commons_posts' => array('views_view'),
);
features_revert($revert);
return array();
}
/**
* Display sticky content at top of lists.
*/
function commons_posts_update_7004() {
$revert = array(
'commons_posts' => array('views_view'),
);
features_revert($revert);
return array();
}
/**
* Add links to node teasers in the browsing widget.
*/
function commons_posts_update_7005() {
$revert = array(
'commons_posts' => array('views_view'),
);
features_revert($revert);
return array();
}
/**
* Improve the browsing widget empty text.
*/
function commons_posts_update_7006() {
$revert = array(
'commons_posts' => array('views_view'),
);
features_revert($revert);
return array();
}