当前位置: 首页>>代码示例>>PHP>>正文


PHP Cell::p方法代码示例

本文整理汇总了PHP中Cell::p方法的典型用法代码示例。如果您正苦于以下问题:PHP Cell::p方法的具体用法?PHP Cell::p怎么用?PHP Cell::p使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Cell的用法示例。


在下文中一共展示了Cell::p方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

        if (strpos($test, 'Jot::button(\'action\', $speak->update)') === false && strpos($test, 'Jot::button("action", $speak->update)') === false) {
            echo '<div class="grid-group">';
            echo '<span class="grid span-1"></span>';
            echo '<span class="grid span-5">';
            Weapon::fire('action_before', $hooks);
            echo Jot::button('action', $speak->update);
            Weapon::fire('action_after', $hooks);
            echo '</span>';
            echo '</div>';
        }
        echo '</form>';
    } else {
        include $page->configurator;
    }
} else {
    echo Cell::p(Config::speak('notify_not_available', $speak->config));
}
?>
        </div>
        <div class="tab-content hidden" id="tab-content-1-3">
          <p class="about-author">
          <?php 
echo Cell::strong($speak->author . ':') . ' ' . $page->author;
if (isset($page->url) && $page->url !== '#') {
    ?>
 <?php 
    echo Cell::a($page->url, Jot::icon('external-link-square'), true, array('class' => array('about-url', 'help'), 'title' => $speak->link, 'rel' => 'nofollow'));
    ?>
          <?php 
}
?>
开发者ID:AdeHaze,项目名称:mecha-cms,代码行数:31,代码来源:cargo.shield.php

示例2: array

                                $html .= '</span>';
                                $html .= '</label>';
                            } else {
                                if ($type === 'e') {
                                    $html .= '<label class="grid-group grid-group-editor">';
                                    $html .= '<span class="grid span-2 form-label">' . $title . '</span>';
                                    $html .= '<span class="grid span-4">';
                                    $html .= Form::textarea('fields[' . $key . '][value]', Converter::str(isset($field[$key]) ? $field[$key] : $value['value']), Converter::toText(isset($value['placeholder']) ? $value['placeholder'] : $value['value']), array('class' => array('textarea-block', 'code')));
                                    $html .= '</span>';
                                    $html .= '</label>';
                                } else {
                                    // if($type === 's') {
                                    $html .= '<label class="grid-group grid-group-summary">';
                                    $html .= '<span class="grid span-2 form-label">' . $title . '</span>';
                                    $html .= '<span class="grid span-4">';
                                    $html .= Form::textarea('fields[' . $key . '][value]', Converter::str(isset($field[$key]) ? $field[$key] : $value['value']), Converter::toText(isset($value['placeholder']) ? $value['placeholder'] : $value['value']), array('class' => 'textarea-block'));
                                    $html .= '</span>';
                                    $html .= '</label>';
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    echo !empty($html) ? $html : Cell::p(Config::speak('notify_empty', strtolower($speak->fields)));
} else {
    echo Cell::p(Config::speak('notify_empty', strtolower($speak->fields)));
}
Weapon::fire('unit_composer_3_after', array($segment, $fields));
开发者ID:razordaze,项目名称:mecha-cms,代码行数:31,代码来源:unit.composer.3.php


注:本文中的Cell::p方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。