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


PHP KInflector::isPLural方法代码示例

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


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

示例1: _createToolbar

 public function _createToolbar()
 {
     $identifier = $this->getToolbar();
     $name = $identifier->name;
     $package = $identifier->package;
     KFactory::get('admin::com.ninja.helper.default')->css('/toolbar.css');
     $img = KInflector::isPLural($name) ? KFactory::get('admin::com.ninja.helper.default')->img('/48/' . $name . '.png') : KFactory::get('admin::com.ninja.helper.default')->img('/48/' . KInflector::pluralize($name) . '.png');
     if (!$img) {
         $img = KInflector::isSingular($name) ? KFactory::get('admin::com.ninja.helper.default')->img('/48/' . $name . '.png') : KFactory::get('admin::com.ninja.helper.default')->img('/48/' . KInflector::singularize($name) . '.png');
     }
     if ($img) {
         KFactory::get('admin::com.ninja.helper.default')->css('.header.icon-48-' . $name . ' { background-image: url(' . $img . '); }');
     }
     return KFactory::get($identifier, array('icon' => $name));
 }
开发者ID:ravenlife,项目名称:Ninjaboard,代码行数:15,代码来源:html.php

示例2: renderTitle

 /**
  * Set the toolbar's title and icon
  *
  * @return 	string
  */
 public function renderTitle()
 {
     $name = $this->getName();
     $img = KInflector::isPLural($name) ? KFactory::get('admin::com.ninja.helper.default')->img('/48/' . $name . '.png') : KFactory::get('admin::com.ninja.helper.default')->img('/48/' . KInflector::pluralize($name) . '.png');
     if (!$img) {
         $img = KInflector::isSingular($name) ? KFactory::get('admin::com.ninja.helper.default')->img('/48/' . $name . '.png') : KFactory::get('admin::com.ninja.helper.default')->img('/48/' . KInflector::singularize($name) . '.png');
     }
     if ($img) {
         KFactory::get('admin::com.ninja.helper.default')->css('.header.icon-48-' . $name . ' { background-image: url(' . $img . '); }');
     }
     $this->name = $this->getName();
     $this->title = $this->_title;
     return $this->getTemplate()->loadIdentifier('admin::com.ninja.view.toolbar.toolbar_title', array('name' => $this->getName(), 'title' => $this->_title))->render(true);
 }
开发者ID:ravenlife,项目名称:Ninja-Framework,代码行数:19,代码来源:html.php


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