Commit 4cd50477 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #233301 by catch, skwashd: more blog module clean-up

parent d9f0476f
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line


Drupal 8.0, xxxx-xx-xx (development version)
Drupal 8.0, xxxx-xx-xx (development version)
----------------------
----------------------
- Removed modules from core
    * The following modules have been removed from core, because contributed
      modules with similar functionality are available:
      * Blog
      * Profile



Drupal 7.0, 2011-01-05
Drupal 7.0, 2011-01-05
----------------------
----------------------
+0 −3
Original line number Original line Diff line number Diff line
@@ -151,9 +151,6 @@ Aggregator module
Block module
Block module
- John Albin Wilkins 'JohnAlbin' <http://drupal.org/user/32095>
- John Albin Wilkins 'JohnAlbin' <http://drupal.org/user/32095>


Blog module
- ?

Book module
Book module
- Peter Wolanin 'pwolanin' <http://drupal.org/user/49851>
- Peter Wolanin 'pwolanin' <http://drupal.org/user/49851>


+1 −1
Original line number Original line Diff line number Diff line
@@ -364,7 +364,7 @@ function block_admin_configure($form, &$form_state, $module, $delta) {
      BLOCK_VISIBILITY_NOTLISTED => t('All pages except those listed'),
      BLOCK_VISIBILITY_NOTLISTED => t('All pages except those listed'),
      BLOCK_VISIBILITY_LISTED => t('Only the listed pages'),
      BLOCK_VISIBILITY_LISTED => t('Only the listed pages'),
    );
    );
    $description = t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>'));
    $description = t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %user for the current user's page and %user-wildcard for every user page. %front is the front page.", array('%user' => 'user', '%user-wildcard' => 'user/*', '%front' => '<front>'));


    if (module_exists('php') && $access) {
    if (module_exists('php') && $access) {
      $options += array(BLOCK_VISIBILITY_PHP => t('Pages on which this PHP code returns <code>TRUE</code> (experts only)'));
      $options += array(BLOCK_VISIBILITY_PHP => t('Pages on which this PHP code returns <code>TRUE</code> (experts only)'));
+1 −1
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@
 *
 *
 * When enabled, the Drupal comment module creates a discussion
 * When enabled, the Drupal comment module creates a discussion
 * board for each Drupal node. Users can post comments to discuss
 * board for each Drupal node. Users can post comments to discuss
 * a forum topic, weblog post, story, collaborative book page, etc.
 * a forum topic, story, collaborative book page, etc.
 */
 */


/**
/**
+1 −1
Original line number Original line Diff line number Diff line
@@ -14,7 +14,7 @@ function dashboard_help($path, $arg) {
      $output .= '<dt>' . t('Tracking user activity') . '</dt>';
      $output .= '<dt>' . t('Tracking user activity') . '</dt>';
      $output .= '<dd>' . t("By enabling blocks such as <em>Who's online</em> and <em>Who's new</em>, site users can track who is logged in and new user signups at a centralized location.") . '</dd>';
      $output .= '<dd>' . t("By enabling blocks such as <em>Who's online</em> and <em>Who's new</em>, site users can track who is logged in and new user signups at a centralized location.") . '</dd>';
      $output .= '<dt>' . t('Tracking content activity') . '</dt>';
      $output .= '<dt>' . t('Tracking content activity') . '</dt>';
      $output .= '<dd>' . t('By enabling blocks such as <em>Recent blog posts</em>, <em>New forum topics</em> and <em>Recent comments</em>, site users can view newly added site content at a glance.') . '</dd>';
      $output .= '<dd>' . t('By enabling blocks such as <em>New forum topics</em> and <em>Recent comments</em>, site users can view newly added site content at a glance.') . '</dd>';
      $output .= '</dl>';
      $output .= '</dl>';
      return $output;
      return $output;


Loading