當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Sections::get_radio_buttons方法代碼示例

本文整理匯總了PHP中Sections::get_radio_buttons方法的典型用法代碼示例。如果您正苦於以下問題:PHP Sections::get_radio_buttons方法的具體用法?PHP Sections::get_radio_buttons怎麽用?PHP Sections::get_radio_buttons使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Sections的用法示例。


在下文中一共展示了Sections::get_radio_buttons方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

     $input = ARTICLES_UNPUBLISH_IMG . i18n::s('not published');
 }
 $fields[] = array($label, $input);
 // the expiry date
 $label = i18n::s('Expiry date');
 if (isset($item['expiry_date']) && $item['expiry_date'] > NULL_DATE) {
     $input = Surfer::from_GMT($item['expiry_date']);
 } else {
     $input = i18n::s('never');
 }
 $fields[] = array($label, $input);
 // the parent section
 if (is_object($anchor)) {
     if (isset($item['id']) && Articles::is_owned($item, $anchor)) {
         $label = i18n::s('Section');
         $input =& Skin::build_box(i18n::s('Select parent container'), Sections::get_radio_buttons($anchor->get_reference()), 'folded');
         $fields[] = array($label, $input);
     } else {
         $text .= '<input type="hidden" name="anchor" value="' . $anchor->get_reference() . '" />';
     }
 }
 // append fields
 if (is_object($anchor)) {
     $label = sprintf(i18n::s('Contribution to "%s"'), $anchor->get_title());
 } else {
     $label = i18n::s('Contribution to parent container');
 }
 $text .= Skin::build_box($label, Skin::build_form($fields), 'folded');
 $fields = array();
 // the source
 $label = i18n::s('Source');
開發者ID:rair,項目名稱:yacs,代碼行數:31,代碼來源:edit_as_thread.php

示例2: array

 $input = Skin::build_input_time('expiry_date', $value, 'date_time');
 $hint = i18n::s('Remove content on dead-line - automatically');
 $fields[] = array($label, $input, $hint);
 // provide my id
 $me = isset($item['id']) ? $item['id'] : NULL;
 // reference to parent section
 $ref = is_object($anchor) ? $anchor->get_reference() : NULL;
 // associates can anchor the section anywhere
 if (Surfer::is_associate()) {
     $label = i18n::s('Section');
     $input =& Skin::build_box(i18n::s('Select parent container'), Sections::get_radio_buttons($ref, $me), 'folded');
     $fields[] = array($label, $input);
     // parent section is defined and surfer is an editor of it
 } elseif (is_object($anchor) && $anchor->is_assigned()) {
     $label = i18n::s('Section');
     $input =& Skin::build_box(i18n::s('Select parent container'), Sections::get_radio_buttons($ref, $me), 'folded');
     $fields[] = array($label, $input);
     // preserve the existing anchor
 } else {
     $text .= '<input type="hidden" name="anchor" value="' . $anchor->get_reference() . '" />';
 }
 // append fields
 $parent .= Skin::build_form($fields);
 $fields = array();
 // append fields
 if (is_object($anchor)) {
     $label = sprintf(i18n::s('Contribution to "%s"'), $anchor->get_title());
 } else {
     $label = i18n::s('Appearance at the site map');
 }
 $text .= Skin::build_box($label, $parent, 'folded');
開發者ID:rair,項目名稱:yacs,代碼行數:31,代碼來源:edit.php


注:本文中的Sections::get_radio_buttons方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。