SimplePortal

Customization => Blocks and Modifications => Topic started by: grafitus on March 21, 2010, 11:37:36 AM

Title: [Block] To-Do List
Post by: grafitus on March 21, 2010, 11:37:36 AM
This block to show need to do in the my To-Do List (http://custom.simplemachines.org/mods/index.php?mod=2445) mod.

Create a new PHP block and add this content:
Code: [Select]
global $context, $smcFunc;

$request = $smcFunc['db_query']('', '
SELECT subject, time, priority
FROM {db_prefix}to_do
WHERE id_member = {int:member}
LIMIT {int:limit}',
array(
'member' => $context['user']['id'],
'limit' => 5,
)
);

$context['todo'] = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$context['todo'][] = array(
'subject' => $row['subject'],
'time' => $row['time'],
'priority' => $row['priority'],
);
}
$smcFunc['db_free_result']($request);

if (empty($context['todo']))
echo $txt['to_do_empty']; // Free man :D
else
{
foreach ($context['todo'] as $todo)
echo '
', $todo['subject'], ' - <span class="smalltext"><em>', $todo['time'], '</em></span>';
}
Title: Re: [Block] To-Do List
Post by: Afro on April 30, 2010, 08:17:32 AM
Good One
Title: Re: [Block] To-Do List
Post by: 130860 on April 30, 2010, 09:13:21 AM
nice  one grafitus ;)  I use your to do list mod in my forum and so far is been wonderful, thanks for the block ;)
Title: Re: [Block] To-Do List
Post by: grafitus on April 30, 2010, 09:18:36 AM
No problem guys. :nervous-happy: I glad you like to the block...
Title: Re: [Block] To-Do List
Post by: Normally on June 06, 2010, 04:23:40 PM
I have installed the To Do List and put the block on the right site.
I made something to do, and nothing show up in that block.

Stef.
Title: Re: [Block] To-Do List
Post by: grafitus on June 07, 2010, 08:30:33 AM
Were you installed new version (To-Do List)? If so, this is very normal. Because, table structure changed on new version. I hope I add appropriate codes in new version.
Title: Re: [Block] To-Do List
Post by: AngelinaBelle on June 11, 2010, 09:06:55 AM
Is this a question about Grafitus' To-Do list block? Or a question about his To-Do list mod?
Title: Re: [Block] To-Do List
Post by: Normally on June 14, 2010, 03:43:55 PM
about Grafitus' To-Do list block
Title: Re: [Block] To-Do List
Post by: AngelinaBelle on June 14, 2010, 04:44:57 PM
I think Grafitus is saying that this block code works with the older version of his to-do-list mod, and that he will update it when he has the opportunity.
Title: Re: [Block] To-Do List
Post by: Normally on June 15, 2010, 01:46:04 AM
Oke, thanks.
Than i wait for it.

Stef.
SimplePortal 2.3.8 © 2008-2024, SimplePortal