First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
67
sites/all/modules/civicrm/templates/CRM/Block/Add.tpl
Normal file
67
sites/all/modules/civicrm/templates/CRM/Block/Add.tpl
Normal file
|
@ -0,0 +1,67 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<div id="crm-quick-create" class="crm-container">
|
||||
<form action="{$postURL}" method="post">
|
||||
|
||||
<div class="form-item">
|
||||
<div>
|
||||
<label for="qa_first_name">{ts}First Name:{/ts}</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="first_name" id="qa_first_name" class="form-text" maxlength="64" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-item">
|
||||
<div>
|
||||
<label for="qa_last_name">{ts}Last Name:{/ts}</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="last_name" id="qa_last_name" class="form-text required" maxlength="64" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-item">
|
||||
<div>
|
||||
<label for="qa_email">{ts}Email:{/ts}</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="email" name="email[1][email]" id="qa_email" class="form-text" maxlength="64" />
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="email[1][location_type_id]" value="{$primaryLocationType}" />
|
||||
<input type="hidden" name="email[1][is_primary]" value="1" />
|
||||
<input type="hidden" name="ct" value="Individual" />
|
||||
<input type="hidden" name="email_greeting_id" value="{$email_greeting_id}" />
|
||||
<input type="hidden" name="postal_greeting_id" value="{$postal_greeting_id}" />
|
||||
<input type="hidden" name="addressee_id" value="{$addressee_id}" />
|
||||
<input type="hidden" name="qfKey" value="{crmKey name='CRM_Contact_Form_Contact' addSequence=1}" />
|
||||
</div>
|
||||
|
||||
<div class="form-item"><input type="submit" name="_qf_Contact_next" value="{ts}Save{/ts}" class="crm-form-submit" /></div>
|
||||
|
||||
</form>
|
||||
</div>
|
63
sites/all/modules/civicrm/templates/CRM/Block/CreateNew.tpl
Normal file
63
sites/all/modules/civicrm/templates/CRM/Block/CreateNew.tpl
Normal file
|
@ -0,0 +1,63 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<div class="block-civicrm crm-container">
|
||||
<div id="crm-create-new-wrapper">
|
||||
{crmButton id="crm-create-new-link" href="#" icon="bars"}{ts}Create New{/ts}{/crmButton}
|
||||
<div id="crm-create-new-list">
|
||||
<div class="crm-create-new-list-inner">
|
||||
<ul>
|
||||
{foreach from=$shortCuts item=short}
|
||||
<li><a href="{$short.url}" class="crm-{$short.ref}">{$short.title}</a>
|
||||
{if $short.shortCuts}
|
||||
<ul>
|
||||
{foreach from=$short.shortCuts item=shortCut}
|
||||
<li><a href="{$shortCut.url}" class="crm-{$shortCut.ref}">{$shortCut.title}</a></li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='clear'></div>
|
||||
{literal}
|
||||
<script>
|
||||
(function ($) {
|
||||
$('#crm-create-new-list > div > ul').menu();
|
||||
$('#crm-create-new-link').click(function (event) {
|
||||
$('#crm-create-new-list').toggle();
|
||||
$('body:not(#crm-create-new-list)').click(function () {
|
||||
$('#crm-create-new-list').hide();
|
||||
});
|
||||
event.stopPropagation();
|
||||
return false;
|
||||
});
|
||||
})(CRM.$);
|
||||
</script>
|
||||
|
||||
{/literal}
|
30
sites/all/modules/civicrm/templates/CRM/Block/Dashboard.tpl
Normal file
30
sites/all/modules/civicrm/templates/CRM/Block/Dashboard.tpl
Normal file
|
@ -0,0 +1,30 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<div class="block-civicrm crm-container">
|
||||
{foreach from=$dashboardLinks item=dash}
|
||||
<a accesskey="{$dash.key}" href="{$dash.url}">{$dash.title}</a>
|
||||
{/foreach}
|
||||
</div>
|
42
sites/all/modules/civicrm/templates/CRM/Block/Event.tpl
Normal file
42
sites/all/modules/civicrm/templates/CRM/Block/Event.tpl
Normal file
|
@ -0,0 +1,42 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
{* Block to display upcoming events. *}
|
||||
{* You can add the following additional event elements to this tpl as needed: $ev.end_date, $ev.location, $ev.description, $ev.contact_email *}
|
||||
{* Change truncate:80 to a larger or smaller value to show more or less of the summary. Remove it to show complete summary. *}
|
||||
<div id="crm-event-block" class="crm-container">
|
||||
{if $eventBlock}
|
||||
{foreach from=$eventBlock item=ev}
|
||||
<p>
|
||||
<a href="{$ev.url}">{$ev.title}</a><br />
|
||||
{$ev.start_date|truncate:10:""|crmDate}<br />
|
||||
{assign var=evSummary value=$ev.summary|truncate:80:""}
|
||||
<em>{$evSummary}{if $ev.summary|count_characters:true GT 80} (<a href="{$ev.url}">{ts}more{/ts}...</a>){/if}</em>
|
||||
</p>
|
||||
{/foreach}
|
||||
{else}
|
||||
<p>{ts}There are no upcoming events.{/ts}</p>
|
||||
{/if}
|
||||
</div>
|
|
@ -0,0 +1,66 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<script type="text/javascript">
|
||||
{literal}
|
||||
function submitForm( ) {
|
||||
var text = document.getElementById('text').value;
|
||||
var table = document.getElementById('fulltext_table').value;
|
||||
var url = {/literal}'{crmURL p="civicrm/contact/search/custom" h=0 q="csid=`$fullTextSearchID`&reset=1&force=1&text="}'{literal} + text;
|
||||
if ( table ) {
|
||||
url = url + '&table=' + table;
|
||||
}
|
||||
document.getElementById('id_fulltext_search').action = url;
|
||||
}
|
||||
{/literal}
|
||||
</script>
|
||||
|
||||
<div class="block-crm crm-container">
|
||||
<form method="post" id="id_fulltext_search">
|
||||
<div style="margin-bottom: 8px;">
|
||||
<input type="text" name="text" id='text' value="" class="crm-form-text" style="width: 10em;" /> <input type="submit" name="submit" id="fulltext_submit" value="{ts}Go{/ts}" class="crm-form-submit"/ onclick='submitForm();'>
|
||||
<input type="hidden" name="qfKey" value="{crmKey name='CRM_Contact_Controller_Search' addSequence=1}" />
|
||||
</div>
|
||||
<select class="form-select" id="fulltext_table" name="fulltext_table">
|
||||
{if call_user_func(array('CRM_Core_Permission','giveMeAllACLs'))}
|
||||
<option value="">{ts}All{/ts}</option>
|
||||
<option value="Contact">{ts}Contacts{/ts}</option>
|
||||
{/if}
|
||||
<option value="Activity">{ts}Activities{/ts}</option>
|
||||
{if call_user_func(array('CRM_Core_Permission','access'), 'CiviCase')}
|
||||
<option value="Case">{ts}Cases{/ts}</option>
|
||||
{/if}
|
||||
{if call_user_func(array('CRM_Core_Permission','access'), 'CiviContribute')}
|
||||
<option value="Contribution">{ts}Contributions{/ts}</option>
|
||||
{/if}
|
||||
{if call_user_func(array('CRM_Core_Permission','access'), 'CiviEvent')}
|
||||
<option value="Participant">{ts}Participants{/ts}</option>
|
||||
{/if}
|
||||
{if call_user_func(array('CRM_Core_Permission','access'), 'CiviMember')}
|
||||
<option value="Membership">{ts}Memberships{/ts}</option>
|
||||
{/if}
|
||||
</select> {help id="id-fullText" file="CRM/Contact/Form/Search/Custom/FullText.hlp"}
|
||||
</form>
|
||||
</div>
|
34
sites/all/modules/civicrm/templates/CRM/Block/LangSwitch.tpl
Normal file
34
sites/all/modules/civicrm/templates/CRM/Block/LangSwitch.tpl
Normal file
|
@ -0,0 +1,34 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
{if isset($langSwitch) and $langSwitch|@count > 1}
|
||||
<form action="#">
|
||||
<select name="lcMessages" onchange="window.location='{crmURL q="$queryString"}'+this.value">
|
||||
{foreach from=$langSwitch item=language key=locale}
|
||||
<option value="{$locale}" {if $locale == $tsLocale}selected="selected"{/if}>{$language}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</form>
|
||||
{/if}
|
30
sites/all/modules/civicrm/templates/CRM/Block/Mail.tpl
Normal file
30
sites/all/modules/civicrm/templates/CRM/Block/Mail.tpl
Normal file
|
@ -0,0 +1,30 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<div id='crm-mail' class="crm-container">
|
||||
{foreach from=$shortCuts item=short}
|
||||
<a href="{$short.url}">{$short.title}</a><br />
|
||||
{/foreach}
|
||||
</div>
|
|
@ -0,0 +1,54 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
{* Displays recently viewed objects (contacts and other objects like groups, notes, etc. *}
|
||||
<div id="crm-recently-viewed" class="left crm-container">
|
||||
<ul>
|
||||
{foreach from=$recentlyViewed item=item}
|
||||
<li class="crm-recently-viewed" ><a href="{$item.url}" title="{$item.title|escape:'html'}">
|
||||
{if $item.image_url}
|
||||
<span class="icon crm-icon {if $item.subtype}{$item.subtype}{else}{$item.type}{/if}-icon" style="background: url('{$item.image_url}')"></span>
|
||||
{else}
|
||||
<span class="icon crm-icon {$item.type}{if $item.subtype}-subtype{/if}-icon"></span>
|
||||
{/if}
|
||||
{if $item.isDeleted}<del>{/if}{$item.title|mb_truncate:25:"..":true}{if $item.isDeleted}</del>{/if}</a>
|
||||
<div class="crm-recentview-wrapper">
|
||||
<a href='{$item.url}' class="crm-actions-view">{ts}View{/ts}</a>
|
||||
{if $item.edit_url}<a href='{$item.edit_url}' class="crm-actions-edit">{ts}Edit{/ts}</a>{/if}
|
||||
{if $item.delete_url}<a href='{$item.delete_url}' class="crm-actions-delete">{ts}Delete{/ts}</a>{/if}
|
||||
</div>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
CRM.$(function($) {
|
||||
if ($('#crm-recently-viewed').offset().left > 150) {
|
||||
$('#crm-recently-viewed').removeClass('left').addClass('right');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
26
sites/all/modules/civicrm/templates/CRM/Block/Subject.tpl
Normal file
26
sites/all/modules/civicrm/templates/CRM/Block/Subject.tpl
Normal file
|
@ -0,0 +1,26 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
<span class='crm_blocktitle'>{$subject}</span>
|
33
sites/all/modules/civicrm/templates/CRM/Block/blocks.tpl
Normal file
33
sites/all/modules/civicrm/templates/CRM/Block/blocks.tpl
Normal file
|
@ -0,0 +1,33 @@
|
|||
{*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*}
|
||||
{foreach from=$blocks item=block}
|
||||
<div class="block {$block.name}" id="{$block.id}">
|
||||
<h2 class="title">{$block.subject}</h2>
|
||||
<div class="content">
|
||||
{$block.content}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
Loading…
Add table
Add a link
Reference in a new issue