This site is a static archive of the Aegir community site. Documentation has moved to http://docs.aegirproject.org. Other community resources can be found on the Contacting the community page.
Skip navigation

Revision of Aegir developer cheat sheet from Mon, 04/04/2011 - 21:57

Help

Aegir developer cheat sheet

1. Locations and paths

  • Drupal root: d()->site
  • Site path: d()->site_path

2. File permissions and ownership

$ctools_path = d()->site_path . '/files/ctools';

provision_file()->chmod($ctools_path, 0770, TRUE)
  ->succeed('Changed permissions of <code>@path
to @perm') ->fail('Could not change permissions @path to @perm') ->status();

provision_file()->chgrp($ctools_path, d('@server_master')->web_group, TRUE) ->succeed('Change group ownership of settings.php to @path') ->fail('Could not change group ownership of settings.php to @path') ->status();

Need help?

Documentation

The notebook section provides a way for you to store and share information with your group members. With the book feature you can:

  • Add book pages and organize them hierarchically into different books.
  • Attach files to pages to share them with others.
  • Track changes that others have made and revert changes as necessary.
  • Archive books that are no longer of interest to the group. Archived books can be reactivated later if needed.

The revisions let you track differences between multiple versions of a post.