本文整理汇总了PHP中ctools_modal_command_display函数的典型用法代码示例。如果您正苦于以下问题:PHP ctools_modal_command_display函数的具体用法?PHP ctools_modal_command_display怎么用?PHP ctools_modal_command_display使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了ctools_modal_command_display函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ajax_set_layout
function ajax_set_layout($layout)
{
ctools_include('context');
ctools_include('display-layout', 'panels');
$form_state = array('layout' => $layout, 'display' => $this->display, 'finish' => t('Save'), 'no_redirect' => TRUE);
// Reset the $_POST['ajax_html_ids'] values to preserve
// proper IDs on form elements when they are rebuilt
// by the Panels IPE without refreshing the page
$_POST['ajax_html_ids'] = array();
$output = drupal_build_form('panels_change_layout', $form_state);
$output = drupal_render($output);
if (!empty($form_state['executed'])) {
if (isset($form_state['back'])) {
return $this->ajax_change_layout();
}
if (!empty($form_state['clicked_button']['#save-display'])) {
// Saved. Save the cache.
panels_edit_cache_save($this->cache);
$this->display->skip_cache;
// Since the layout changed, we have to update these things in the
// renderer in order to get the right settings.
$layout = panels_get_layout($this->display->layout);
$this->plugins['layout'] = $layout;
if (!isset($layout['regions'])) {
$this->plugins['layout']['regions'] = panels_get_regions($layout, $this->display);
}
$this->meta_location = 'inline';
$this->commands[] = ajax_command_replace("#panels-ipe-display-{$this->clean_key}", panels_render_display($this->display, $this));
$this->commands[] = ctools_modal_command_dismiss();
return;
}
}
$this->commands[] = ctools_modal_command_display(t('Change layout'), $output);
}
示例2: ajax_select_content
/**
* AJAX command to present a dialog with a list of available content.
*/
function ajax_select_content($region = NULL, $category = NULL) {
if (!array_key_exists($region, $this->plugins['layout']['regions'])) {
ctools_modal_render(t('Error'), t('Invalid input'));
}
$title = t('Add content to !s', array('!s' => $this->plugins['layout']['regions'][$region]));
$categories = $this->get_categories($this->cache->content_types);
if (empty($categories)) {
$output = t('There are no content types you may add to this display.');
}
else {
$output = '<div class="panels-add-content-modal">';
$selector = $this->render_category_selector($categories, $category, $region);
$content = !empty($categories[$category]['content']) ? $categories[$category]['content'] : array();
$center = $this->render_category($content, $category, $region);
$output .= '<div class="panels-section-column panels-section-column-categories">'
. '<div class="inside">' . $selector . '</div></div>';
$output .= $center;
$output .= '</div>'; // panels-add-content-modal
}
$this->commands[] = ctools_modal_command_display($title, $output);
}
示例3: ajax_select_content
/**
* AJAX command to present a dialog with a list of available content.
*/
function ajax_select_content($region = NULL, $category = NULL)
{
if (!array_key_exists($region, $this->plugins['layout']['regions'])) {
ctools_modal_render(t('Error'), t('Invalid input'));
}
$title = t('Add content to !s', array('!s' => $this->plugins['layout']['regions'][$region]));
$categories = $this->get_categories($this->cache->content_types);
if (empty($categories)) {
$output = t('There are no content types you may add to this display.');
} else {
$output = theme('panels_add_content_modal', array('renderer' => $this, 'categories' => $categories, 'category' => $category, 'region' => $region));
}
$this->commands[] = ctools_modal_command_display($title, $output);
// Give keybord focus to the first item in the category we just loaded.
if (!empty($category)) {
$this->commands[] = ajax_command_invoke(".panels-add-content-modal .panels-section-columns :focusable:first", 'focus');
}
}
示例4: ajax_select_content
/**
* AJAX command to present a dialog with a list of available content.
*/
function ajax_select_content($region = NULL, $category = NULL)
{
if (!array_key_exists($region, $this->plugins['layout']['regions'])) {
ctools_modal_render(t('Error'), t('Invalid input'));
}
$title = t('Add content to !s', array('!s' => $this->plugins['layout']['regions'][$region]));
$categories = $this->get_categories($this->cache->content_types);
if (empty($categories)) {
$output = t('There are no content types you may add to this display.');
} else {
$output = theme('panels_add_content_modal', array('renderer' => $this, 'categories' => $categories, 'category' => $category, 'region' => $region));
}
$this->commands[] = ctools_modal_command_display($title, $output);
}
示例5: getFormDialog
public function getFormDialog($js, $q)
{
$this->useJS = $js;
$this->questionId = $q;
if (!$this->useJS()) {
return drupal_get_form('chgk_db_edit_question_form');
}
$modal_style = array('chgkdb_modal' => array('modalOptions' => array('opacity' => 0.5, 'background-color' => '#000'), 'animation' => 'fadeIn', 'modalTheme' => 'CToolsChgkDbModal'));
drupal_add_js($modal_style, 'setting');
$form_state = array('title' => 'Редактирование вопроса', 'ajax' => $js, 'question_id' => $this->getQuestionId(), 'question' => &$q);
$commands = ctools_modal_form_wrapper('chgk_db_edit_question_form', $form_state);
if (!empty($form_state['executed'])) {
$commands = array();
$commands[] = ctools_modal_command_display(t("Sending form"), "Сохраняем...");
$commands[] = ctools_ajax_command_reload();
}
print ctools_ajax_render($commands);
exit;
}
示例6: implode
$url .= '/' . implode('/', $args);
}
return $url;
}
/**
* AJAX comman to present a dialog with our crazy shtuff
*/
function ajax_select_cns_content($region = NULL, $category = NULL)
{
if (!array_key_exists($region, $this->plugins['layout']['regions'])) {