本文整理汇总了PHP中Doctrine_Table::hasTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP Doctrine_Table::hasTemplate方法的具体用法?PHP Doctrine_Table::hasTemplate怎么用?PHP Doctrine_Table::hasTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Doctrine_Table
的用法示例。
在下文中一共展示了Doctrine_Table::hasTemplate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _hasI18nTemplate
/**
* Checks, whether a table has a Doctrine_Template_I18n-based template.
*
* @author Jakub Argasiński <argasek@gmail.com>
* @param Doctrine_Table $table
*/
protected function _hasI18nTemplate(Doctrine_Table $table) {
if ($table->hasTemplate('Doctrine_Template_I18n')) {
return true;
}
$templates = $table->getTemplates();
foreach ($templates as $template) {
if (is_subclass_of($template, 'Doctrine_Template_I18n')) {
return true;
}
}
return false;
}
示例2: isModifiedIsASoftDeleteColumn
/**
* Checks if passed modified is a SoftDelete "deleted_at" column
*
* @param array $modified
* @param Doctrine_Table $table
* @return boolean
*/
protected function isModifiedIsASoftDeleteColumn($modified, Doctrine_Table $table)
{
# When SoftDelete behavior saves "deleted" object
# do not update object version on when "deleted" object is saving
if ($table->hasTemplate('SoftDelete')) {
$softDeleteTemplate = $table->getTemplate('SoftDelete');
$deleteAtField = $softDeleteTemplate->getOption('name');
# skip if SoftDelete sets deleted_at field
if (in_array($deleteAtField, $modified)) {
return true;
}
}
return false;
}