recipe for a social learning platform - #5 - modules hacks
Posted by: admin in site_development, tags: blogging, drupal, portfolioI made the 2 following minor module hacks to improve the user interface on the blog editing page:
Audio module
be sure to use:
audio 5.x-2.x-dev (or later)
- which permits audio file upload & streaming audio in any node type, so that users can upload streaming audio to blog posts
The audio attach section added by this module to the node (e.g. blog) editing page is a collapsible section, but by default is expanded. This presents additional options on the page which might be confusing to the novice user; I’d rather have this section collapsed by default.
find audio_attach.module, in audio/contrib/attach/
at line 76, add ‘#collapsed’ => TRUE
so that this line reads:
$form['audio_attach'] = array(’#type’ => ‘fieldset’, ‘#title’ => t(’Attached audio files’), ‘#collapsible’ => TRUE, ‘#collapsed’ => TRUE);
Override Node Publishing Options module
I’d like to give the user the option to toggle “published” on/off, but not offer the options to promote to front page, make sticky, or create new revision.
Find override_node_options.module, in the override_node_options directory.
Comment out lines 28, 29 and 30, so that these read:
// $form['options']['override_publishing_promote'] …
// $form['options']['override_publishing_sticky'] …
// $form['options']['override_publishing_revision'] …
Table of contents for social learning site
- recipe for a social learning platform - #1
- recipe for a social learning platform - #2 - demo site
- recipe for a social learning platform - #3 - site & core modules
- recipe for a social learning platform - #4 - additional modules
- recipe for a social learning platform - #5 - modules hacks
- recipe for a social learning platform - #6 - social rated news
- recipe for a social learning platform - #7 - theme
- recipe for a social learning platform - #8 - login & access
- recipe for a social learning platform - #9 - views
- recipe for a social learning platform - #10 - no social rating?
- recipe for a social learning platform - #11 - files repository
- recipe for a social learning platform - #12 - distributed content
- recipe for a social learning platform - #14 - news feeds
- recipe for a social learning platform - #15 - surfacing algorithms
- recipe for a social learning platform - #16 - surfacing algorithms - node cloud
- recipe for a social learning platform - #17 - news feeds take two
- recipe for a social learning platform - #18 - making it social
- featuritis
- recipe for a social learning platform - navigation


Entries (RSS)