本文整理汇总了PHP中AppModel::getID方法的典型用法代码示例。如果您正苦于以下问题:PHP AppModel::getID方法的具体用法?PHP AppModel::getID怎么用?PHP AppModel::getID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppModel
的用法示例。
在下文中一共展示了AppModel::getID方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: changed
/**
* Mark a node change, triggering cascade cache clearing
*
* @param AppModel $model
* @param int $id
*/
public function changed($model, $id = null)
{
if (empty($id)) {
$id = $model->getID();
}
if ($model->Behaviors->enabled('Translate')) {
$locales = SlConfigure::read('I18n.locales');
foreach ($locales as $locale) {
$key = Inflector::underscore($model->alias) . "_{$id}_{$locale}";
Cache::delete($key, 'models');
}
} else {
$key = Inflector::underscore($model->alias) . "_{$id}";
Cache::delete($key, 'models');
}
}
示例2: createToken
/**
* Create, save and pass token to ModelName::$tokens
*
* @param AppModel $Model
* @param string $name
* @param mixed $id
* @return mixed string token or false
* @access public
*/
public function createToken($Model, $name, $id = null)
{
$id = empty($id) ? $Model->getID() : $id;
if (empty($id) || (bool) $Model->Token->find('count', array('conditions' => array('model' => $Model->name, 'foreign_key' => $id, 'name' => $name)))) {
return false;
}
do {
$token = $this->generateToken($Model);
} while ((bool) $Model->Token->find('count', array('conditions' => array('value' => $token))));
$data = array('Token' => array('model' => $Model->name, 'foreign_key' => $id, 'name' => $name, 'value' => $token));
$Model->Token->create($data);
if ($Model->Token->save()) {
return $Model->tokens[$name] = $token;
}
return false;
}