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


PHP ORM::unique_key方法代码示例

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


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

示例1: unique_key

 /**
  * Allows loading by token string.
  */
 public function unique_key($id)
 {
     if (!empty($id) and is_string($id) and !ctype_digit($id)) {
         return 'token';
     }
     return parent::unique_key($id);
 }
开发者ID:sydlawrence,项目名称:SocialFeed,代码行数:10,代码来源:auth_user_token.php

示例2: unique_key

 /**
  * Allows a model to be loaded by username.
  */
 public function unique_key($id)
 {
     if (!empty($id) and is_string($id) and !ctype_digit($id)) {
         return $this->columns['username'];
     }
     return parent::unique_key($id);
 }
开发者ID:Wouterrr,项目名称:kohanamodules2.3.2,代码行数:10,代码来源:a1_user.php

示例3: unique_key

 public function unique_key($id = NULL)
 {
     if (!empty($id) && is_string($id) && !ctype_digit($id)) {
         return 'url_identifier';
     }
     return parent::unique_key($id);
 }
开发者ID:vitrinephp,项目名称:Vitrine-PHP,代码行数:7,代码来源:document.php

示例4: unique_key

 /**
  * Allows finding countries by country code
  */
 public function unique_key($id)
 {
     if (!empty($id) && is_string($id) && !ctype_digit($id)) {
         return 'code';
     }
     return parent::unique_key($id);
 }
开发者ID:anqqa,项目名称:Anqh,代码行数:10,代码来源:geo_country.php

示例5: unique_key

 /**
  * Allows a model to be loaded by username or email address.
  */
 public function unique_key($id)
 {
     if (!empty($id) and is_string($id) and !ctype_digit($id)) {
         return valid::email($id) ? 'email' : 'username';
     }
     return parent::unique_key($id);
 }
开发者ID:sydlawrence,项目名称:SocialFeed,代码行数:10,代码来源:auth_user.php

示例6: unique_key

 /**
  * Allows a model to be loaded by filename.
  */
 public function unique_key($id)
 {
     if (!empty($id) and is_string($id) and !ctype_digit($id)) {
         if (file_exists($id)) {
             return 'basedir';
         }
         return 'hit_id';
     }
     return parent::unique_key($id);
 }
开发者ID:kiirti,项目名称:Ushahidi_MHI,代码行数:13,代码来源:audio_trans.php

示例7: unique_key

 public function unique_key($id = NULL)
 {
     if (empty($id)) {
         return parent::unique_key($id);
     }
     if (is_string($id)) {
         return 'pkey';
     }
     return parent::unique_key($id);
 }
开发者ID:halkeye,项目名称:ecmproject,代码行数:10,代码来源:permission.php

示例8: unique_key

 public function unique_key($id = NULL)
 {
     if (empty($id)) {
         return $this->primary_key;
     }
     /*
     if (is_string($id) && !ctype_digit($id))
         return 'code';
     
     if (is_numeric($id))
         return $this->primary_key;
     */
     return parent::unique_key($id);
 }
开发者ID:halkeye,项目名称:ecmproject,代码行数:14,代码来源:verificationcode.php

示例9: unique_key

 public function unique_key($id = NULL)
 {
     if (empty($id)) {
         return $this->primary_key;
     }
     if (is_string($id) && !ctype_digit($id)) {
         return 'email';
     }
     if (is_numeric($id)) {
         return $this->primary_key;
     }
     return parent::unique_key($id);
 }
开发者ID:halkeye,项目名称:ecmproject,代码行数:13,代码来源:account.php

示例10: unique_key

 /**
  * Allows a model to be loaded by user_name, guid, or email address.
  */
 public function unique_key($id)
 {
     if (!empty($id)) {
         if (is_string($id) and !ctype_digit($id)) {
             if (strpos($id, "@") !== FALSE) {
                 return 'email';
             } else {
                 return 'user_name';
             }
         }
     }
     return parent::unique_key($id);
 }
开发者ID:jimktrains,项目名称:rccms,代码行数:16,代码来源:user.php

示例11: unique_key

 /**
  * Return unique field of table based on id type (int = id, string = name etc)
  *
  * @param   mixed  $id
  * @return  string
  */
 public function unique_key($id)
 {
     if (!empty($id) && is_string($id) && !ctype_digit($id) && $this->primary_val) {
         return $this->primary_val;
     }
     return parent::unique_key($id);
 }
开发者ID:anqqa,项目名称:Anqh,代码行数:13,代码来源:Modeler_ORM.php


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