× Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues

publish_down field

9 года 11 мес. назад #44 от Rob
Rob создал тему: publish_down field
Perhaps I have missed it, is there currently a Field Type similar to the "Finish Publishing" on basic Joomla articles?

Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.

9 года 11 мес. назад - 9 года 11 мес. назад #47 от Gordon
Gordon ответил в теме publish_down field
Just a normal calendar field but you have to code it into your component. Best way is to modify the SQL that delivers the content with a WHERE/AND statement so the result is less than the finishing date.
Joomla Articles (in the front end do it via the content model...

                if ((!$user->authorise('core.edit.state', 'com_content')) && (!$user->authorise('core.edit', 'com_content'))) {
                    // Filter by start and end dates.
                    $nullDate = $db->quote($db->getNullDate());
                    $date = JFactory::getDate();

                    $nowDate = $db->quote($date->toSql());

                    $query->where('(a.publish_up = ' . $nullDate . ' OR a.publish_up <= ' . $nowDate . ')')
                        ->where('(a.publish_down = ' . $nullDate . ' OR a.publish_down >= ' . $nowDate . ')');
                }

Never doubt that a small group of committed people can change the world. Indeed, it is the only thing that ever has... Margaret Mead
Gordon Wright
Old fart developer
Последнее редактирование: 9 года 11 мес. назад пользователем Gordon.
Спасибо сказали: Søren Beck Jensen, Andres Maeso, RIP Graphics

Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.

9 года 11 мес. назад #48 от Rob
Rob ответил в теме publish_down field
Thanks. I'll give it a whirl.

Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.

Время создания страницы: 0.174 секунд
Работает на Kunena форум

We use cookies so that you can place orders and we can provide a better service. You can control the use of cookies at the individual browser level. If you reject cookies, you may still use our website, but your ability to use some features or areas of our website may be limited.