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


PHP TagPeer::getAll方法代码示例

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


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

示例1: executeEditableTagsAutocomplete

 public function executeEditableTagsAutocomplete()
 {
     $this->my_str = $this->getRequestParameter('value');
     $c = new Criteria();
     $c->add(TagPeer::TRIPLE_VALUE, $this->my_str . "%", Criteria::LIKE);
     $this->tags = TagPeer::getAll($c);
 }
开发者ID:valerio-bozzolan,项目名称:openparlamento,代码行数:7,代码来源:BasedeppTaggingActions.class.php

示例2: executeUsertagsAutocomplete

 public function executeUsertagsAutocomplete()
 {
     $this->my_str = $this->getRequestParameter('value');
     $c = new Criteria();
     $c->add(TagPeer::TRIPLE_VALUE, $this->my_str . "%", Criteria::LIKE);
     $c->setLimit(10);
     $this->tags = TagPeer::getAll($c, array('is_triple' => true, 'return' => 'value'));
 }
开发者ID:valerio-bozzolan,项目名称:openparlamento,代码行数:8,代码来源:actions.class.php

示例3: _create_object

$object = _create_object();
$object->addTag('tutu');
$object->save();
$object = _create_object();
$object->addTag('ns:key=value');
$object->addTag('ns:key=tutu');
$object->addTag('ns:key=titi');
$object->addTag('ns:second_key=toto');
$object->save();
$tags_triple = TagPeer::getAll(null, array('triple' => true, 'namespace' => 'ns'));
$t->ok(count($tags_triple) == 2, 'it is possible to set up the plugin so that namespace:key is a unique key.');
$object2 = _create_object();
$object2->addTag('ns:key=value');
$object2->addTag('ns:second_key=toto');
$object2->save();
$tags_triple = TagPeer::getAll(null, array('triple' => true, 'namespace' => 'ns'));
$t->ok(count($tags_triple) == 3, 'it is possible to apply triple tags to various objects when the plugin is set up so that namespace:key is a unique key.');
// test object creation
function _create_object()
{
    $classname = TEST_CLASS;
    if (!class_exists($classname)) {
        throw new Exception(sprintf('Unknow class "%s"', $classname));
    }
    return new $classname();
}
// second type of test object creation
function _create_object_2()
{
    $classname = TEST_CLASS_2;
    if (!class_exists($classname)) {
开发者ID:valerio-bozzolan,项目名称:openparlamento,代码行数:31,代码来源:deppPropelActAsTaggableBehaviorTest.php

示例4: array

$t->ok(!in_array('ns:key=value', $result), 'triple tags are not returned when searching for normal ones.');
// these tests the search of specific triple tags parts
$t->diag('searching for specific parts of triple');
$tags_triple = TagPeer::getAll(null, array('triple' => true, 'namespace' => 'ns'));
$result = array();
foreach ($tags_triple as $tag) {
    $result[] = $tag->getName();
}
$t->ok($result === array('ns:key=value', 'ns:key=tutu', 'ns:key=titi', 'ns:key=toto'), 'it is possible to search for triple tags by namespace.');
$tags_triple = TagPeer::getAll(null, array('triple' => true, 'key' => 'key'));
$result = array();
foreach ($tags_triple as $tag) {
    $result[] = $tag->getName();
}
$t->ok($result === array('ns:key=value', 'ns:key=tutu', 'ns:key=titi', 'ns:key=toto'), 'it is possible to search for triple tags by key.');
$tags_triple = TagPeer::getAll(null, array('triple' => true, 'value' => 'tutu'));
$result = array();
foreach ($tags_triple as $tag) {
    $result[] = $tag->getName();
}
$t->ok($result === array('ns:key=tutu'), 'it is possible to search for triple tags by value.');
// test object creation
function _create_object()
{
    $classname = TEST_CLASS;
    if (!class_exists($classname)) {
        throw new Exception(sprintf('Unknow class "%s"', $classname));
    }
    return new $classname();
}
// second type of test object creation
开发者ID:sgrove,项目名称:cothinker,代码行数:31,代码来源:sfPropelActAsTaggableBehaviorTest.php


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