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

publish_down field

10 yıl 5 ay önce #44 Yazan: Rob
publish_down field, Rob tarafından oluşturuldu
Perhaps I have missed it, is there currently a Field Type similar to the "Finish Publishing" on basic Joomla articles?

Lütfen sohbete katılmak için Giriş ya da Hesap açın.

10 yıl 5 ay önce - 10 yıl 5 ay önce #47 Yazan: Gordon
Gordon tarafından publish_down field konusunda yanıtlandı
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
Son Düzenleme: 10 yıl 5 ay önce Düzenleyen:Gordon
Şu kullanıcı(lar) Teşekkür etti: Søren Beck Jensen, Andres Maeso, RIP Graphics

Lütfen sohbete katılmak için Giriş ya da Hesap açın.

10 yıl 5 ay önce #48 Yazan: Rob
Rob tarafından publish_down field konusunda yanıtlandı
Thanks. I'll give it a whirl.

Lütfen sohbete katılmak için Giriş ya da Hesap açın.

Sayfa oluşturma süresi: 0.051 saniye
Geliştiren: Kunena Forum