本文整理汇总了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));
}
示例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);
}