Page 1 of 1

Easily Manage Downloads

Posted: Sun Jan 30, 2011 6:28 pm
by CAC
I have had a look a the list of modules available, tried a few, but I am looking for something in particular.

I was wondering whether a module/extension exists that will make it easy for a user to upload files and then have them listed in a pre-defined format using a tag inserted on a 'Downloads' page.

In my idea the way the file is listed depends upon the template but anything similar would be welcome!

Thank you very much.

Re: Easily Manage Downloads

Posted: Sun Jan 30, 2011 11:40 pm
by jmcgin51
Uploads module

Re: Easily Manage Downloads

Posted: Mon Jan 31, 2011 11:10 am
by nicmare
what is about DLM?

Re: Easily Manage Downloads

Posted: Mon Jan 31, 2011 7:12 pm
by CAC
DLM seems to be in German?

Re: Easily Manage Downloads

Posted: Tue Feb 01, 2011 11:47 pm
by CAC
Okay, I am using DLM and I am trying to change the theme slightly. I would like to add a description to main downloads page but I don't know the correct variable to call it. I have tried a couple of things within this TD:

Code: Select all

						<td>
{$th_dl_description}
						</td>[code]

Full code:

[code]{if !isset($error_none)}
	<div class="dlm">
		{capture assign="pagetitle"}{$pagetitle}{$path[1]}{$headline}{/capture}
		{if strlen($path[0]) > 0}
		{/if}
		<h3 style="margin-bottom: 5px">Downloadable Resources:</h3>
		{if $itemcount > 0}
			{if trim($description) != ''}<p class="description">{$description}</p>{/if}
			<table cellspacing="1" class="default" style="margin: auto; width: 95%">
				<thead>
					<tr style="text-align:left">
						<th width="65%">Description</th>
						<th width="35%">Download</th>
					</tr>
				</thead>
				<tbody>
				{foreach from=$items item=entry}
				{cycle values="row1,row2" assign=rowclass}
					<tr class="{$rowclass}">

						<td>
{$th_dl_description}
						</td>
						
<td>

{$entry->name}

</td>
								
	

					</tr>
				{/foreach}
				</tbody>
			</table>
		{else}
			<strong>{$no_children}</strong><br />
		{/if}
	</div>
{else}
	<strong>{$error_none}</strong>
{/if}
Any ideas? Thanks.

Re: Easily Manage Downloads

Posted: Wed Feb 09, 2011 12:32 am
by CAC
Any help with this... please? ;D

Re: Easily Manage Downloads

Posted: Wed Feb 09, 2011 1:12 am
by jmcgin51
sorry - I've never used DLM before, so I can't help you...