--- /dev/null
+FSF CiviCRM AGPL Compliance
+===========================
+
+This module adds a block that shows a link to download the complete
+source code to our modified version of CiviCRM.
--- /dev/null
+<?php
+/**
+ * @file
+ * A block module that displays links to download source for AGPL compliance.
+ */
+
+function agpl_compliance_block_info() {
+ $retval['agpl_compliance'] = array(
+ 'info' => t('AGPL Compliance'),
+ );
+ return $retval;
+}
+
+function agpl_compliance_block_view($delta='') {
+ switch($delta) {
+ case 'agpl_compliance':
+ $block['content'] = '<p>This version of CiviCRM contains modifications made by the Free Software Foundation, Inc. <a href="http://agpl.fsf.org/crm.fsf.org/CURRENT/">Complete source code</a></p>';
+ return $block;
+ }
+}
+
+?>
\ No newline at end of file