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


PHP showMiniEditor函数代码示例

本文整理汇总了PHP中showMiniEditor函数的典型用法代码示例。如果您正苦于以下问题:PHP showMiniEditor函数的具体用法?PHP showMiniEditor怎么用?PHP showMiniEditor使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: showMiniEditor

        ?>
" class="option">
              </p>
              <?php 
    }
    ?>
              <?php 
}
?>
              <a href="javascript:void(0);" nctype="addpolloption" class="btn"><i></i><?php 
echo $lang['circle_add_new'];
?>
</a> </div>
          </div>
          <?php 
echo showMiniEditor('themecontent', $output['theme_info']['theme_content'], 'all', $output['affix_list'], 'goods', $output['goods_list'], $output['readperm'], $output['theme_info']['theme_readperm']);
?>
          <div class="bottom"> <a class="submit-btn" nctype="theme_submit" href="Javascript: void(0)"><?php 
echo $lang['nc_edit_theme'];
?>
</a> <a class="cancel-btn" nctype="theme_cancle" href="Javascript:history.go(-1);"><?php 
echo $lang['nc_cancel'];
?>
</a>
            <div id="warning"></div>
          </div>
        </div>
      </div>
    </form>
  </div>
</div>
开发者ID:Maplecms,项目名称:shopnc-api,代码行数:31,代码来源:theme.edit_themepoll.php

示例2: showMiniEditor

    }
    ?>
                <?php 
}
?>
              </select>
              </span></label>
            <label><span class="t"><?php 
echo $lang['nc_title'] . $lang['nc_colon'];
?>
</span><span class="i">
              <input name="name" type="text" class="text" />
              </span></label>
          </div>
          <?php 
echo showMiniEditor('themecontent', '', 'all', array(), 'goods', array(), $output['readperm']);
?>
          <div class="bottom"> <a class="submit-btn" nctype="theme_submit" href="Javascript: void(0)"><?php 
echo $lang['nc_release_new_theme'];
?>
</a> <a class="cancel-btn" nctype="theme_cancle" href="Javascript:history.go(-1);"><?php 
echo $lang['nc_cancel'];
?>
</a>
            <div id="warning"></div>
          </div>
        </div>
      </div>
    </form>
  </div>
</div>
开发者ID:uwitec,项目名称:xbshop,代码行数:31,代码来源:theme.new_theme.php

示例3: showMiniEditor

      <input type="hidden" name="form_submit" value="ok" />
      <div class="quick-thread">
        <div class="quick-thread-box">
          <div class="title">
            <label><span class="t">RE:
              <?php 
if (!empty($output['answer'])) {
    echo $lang['circle_reply'] . '&nbsp;' . $output['answer']['reply_id'] . '&nbsp;' . $lang['circle_floor'] . '&nbsp;' . $output['answer']['member_name'] . '&nbsp;' . $lang['circle_of_reply'];
} else {
    echo $output['theme_info']['theme_name'];
}
?>
              </span></label>
          </div>
          <?php 
echo showMiniEditor('replycontent', $output['reply_info']['reply_content'], 'all', $output['affix_list'], 'goods', $output['goods_list']);
?>
          <div class="bottom"> <a class="submit-btn" nctype="reply_submit" href="Javascript: void(0)"><?php 
echo $lang['nc_edit_reply'];
?>
</a> <a class="cancel-btn" href="Javascript:history.go(-1);" nctype="theme_cancle"><?php 
echo $lang['nc_cancel'];
?>
</a>
            <div id="warning"></div>
          </div>
        </div>
      </div>
    </form>
  </div>
</div>
开发者ID:mengtaolin,项目名称:shopping,代码行数:31,代码来源:theme.edit_reply.php

示例4: showMiniEditor

?>
"/></div>
        </div>
        <form method="post" id="reply_form" action="<?php 
echo CIRCLE_SITE_URL;
?>
/index.php?act=theme&op=save_reply&c_id=<?php 
echo $output['c_id'];
?>
&t_id=<?php 
echo $output['t_id'];
?>
">
          <input type="hidden" name="form_submit" value="ok" />
          <?php 
echo showMiniEditor('replycontent', '', 'hQuickReply');
?>
          <div class="bottom"> <a class="submit-btn" nctype="reply_submit" href="Javascript: void(0)"><?php 
echo $lang['nc_release_reply'];
?>
</a>
            <div id="warning"></div>
          </div>
        </form>
        <div class="clear"></div>
      </div>
    </div>
    <?php 
require_once circle_template('group.sidebar');
?>
    <div class="clear"></div>
开发者ID:Maplecms,项目名称:shopnc-yhmall,代码行数:31,代码来源:theme.detail.php

示例5: showMiniEditor

?>
      <div class="quick-thread">
        <div class="quick-thread-box">
          <div class="title">
            <label><span class="t">RE:
              <?php 
if (!empty($output['answer'])) {
    echo $lang['circle_reply'] . '&nbsp;' . $output['answer']['reply_id'] . '&nbsp;' . $lang['circle_floor'] . '&nbsp;' . $output['answer']['member_name'] . '&nbsp;' . $lang['circle_of_reply'];
} else {
    echo $output['theme_info']['theme_name'];
}
?>
              </span></label>
          </div>
          <?php 
echo showMiniEditor('replycontent', '', 'all', $output['affix_list'], 'goods', array());
?>
          <div class="bottom"> <a class="submit-btn" nctype="reply_submit" href="Javascript: void(0)"><?php 
echo $lang['nc_reply_theme'];
?>
</a> <a class="cancel-btn" href="Javascript:history.go(-1);" nctype="theme_cancle"><?php 
echo $lang['nc_cancel'];
?>
</a>
            <div id="warning"></div>
          </div>
        </div>
      </div>
    </form>
  </div>
</div>
开发者ID:mengtaolin,项目名称:shopping,代码行数:31,代码来源:theme.reply.php


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