-
-
Save Grinyaha/e1affe5e2cac7fb89bb8f54291aba1e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //<?php | |
| $manager_theme = $modx->config['manager_theme']; | |
| $data = $modx->runSnippet('DocLister', array( | |
| 'debug' => 0, | |
| 'idType' => 'documents', | |
| 'ignoreEmpty' => 1, | |
| 'controller' => 'onetable', | |
| 'table' => 'subscribers', | |
| 'dateSource' => 'createdon', | |
| 'ownerTPL' => '@CODE:<table class="grid"> | |
| <tr><td class="gridHeader">Email</td><td class="gridHeader">Дата</td><td class="gridHeader">Отправлено</td></tr> | |
| [+dl.wrap+]</table> ', | |
| 'tpl' => '@CODE:<tr><td>[+email+]</td><td>[+dl.date+]</td><td>[+sent-text+]</td></tr>', | |
| 'prepare' => function($data){ | |
| $data['sent-text'] = $data['sent'] ? 'Да' : 'Нет'; | |
| return $data; | |
| } | |
| )); | |
| $output=<<<OUT | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" type="text/css" href="media/style/{$manager_theme}/style.css"> | |
| </head> | |
| <body> | |
| <h1></h1> | |
| <div class="section"> | |
| <div class="sectionHeader">Подписки</div> | |
| <div class="sectionBody"> | |
| {$data} | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |
| OUT; | |
| echo $output; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment