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


PHP CopixI18N::exists方法代码示例

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


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

示例1: process

 /**
  * Génération du code HTML
  * @return string
  */
 public function process($pParams)
 {
     //Test si le parametre correspondant au type existe
     if (isset($pParams['type'])) {
         $type = $pParams['type'];
     } else {
         //Sinon on génère une exception précisant que le type est manquant
         throw new CopixTemplateTagException('CopixImage: missing type parameter');
     }
     //Si une propriété correspond au type saisi
     if (CopixI18N::exists('copix:common.buttons.' . $type)) {
         //On récupère le libellé de ce type
         $alt = _i18n('copix:common.buttons.' . $type);
     } else {
         //Sinon on génère une erreur
         throw new CopixException('You must enter an existing type');
     }
     //identifiant sur le href
     $idimg = '';
     $idhref = '';
     if (isset($pParams['id'])) {
         $idimg = 'id="' . $pParams['id'] . '_img"';
         $idhref = 'id="' . $pParams['id'] . '_href"';
     }
     //Initialisation du type
     if (isset($pParams['title'])) {
         $title = $pParams['title'];
     } else {
         $title = $alt;
     }
     if (isset($pParams['class'])) {
         $class = 'class="' . $pParams['class'] . '"';
     } else {
         $class = '';
     }
     //Création du chemin ou se trouve l'image
     $fileName = str_replace(CopixUrl::getRequestedBaseUrl(), './', _resource("img/tools/" . $type . ".png"));
     //Test si le fichier existe
     if (file_exists($fileName)) {
         $src = _resource("img/tools/" . $type . ".png");
     } else {
         throw new CopixException('No icon does not correspond to your application');
     }
     if (isset($pParams['text'])) {
         $text = $pParams['text'];
     } else {
         $text = '';
     }
     //si une url a été renseignée
     if (isset($pParams['href'])) {
         $href = $pParams['href'];
         return '<a href="' . $href . '" ' . $idhref . ' title="' . $title . '" ' . $class . '><img src="' . $src . '" ' . $idimg . ' alt="' . $alt . '"/>' . $text . '</a>';
     } else {
         return '<img src="' . $src . '" ' . $idimg . ' alt="' . $alt . '" title="' . $title . '"  ' . $class . ' />' . $text;
     }
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:60,代码来源:copixicon.templatetag.php

示例2: testExists

 public function testExists()
 {
     $this->assertTrue(CopixI18N::exists('copix:common.none'));
     $this->assertFalse(CopixI18N::exists('copix:common.fooooooooooooo'));
     $this->assertFalse(CopixI18N::exists('fooooooooooooo'));
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:6,代码来源:copixtest_copixi18ntest.class.php

示例3: processI18n

 /**
  * Cle i18n
  *
  * @author Christophe Beyer <cbeyer@cap-tic.fr>
  * @since 2011/06/17
  * @param string $key Cle demandee
  */
 public function processI18n()
 {
     _currentUser()->assertCredential('group:[current_user]');
     $iKey = CopixRequest::get('key');
     if (CopixI18N::exists($iKey)) {
         echo CopixI18N::get($iKey);
     }
     return _arNone();
 }
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:16,代码来源:default.actiongroup.php


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