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


PHP Entity::getURL方法代码示例

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


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

示例1: getURL

 function getURL()
 {
     if (!$this->getSlug() && $this->getID()) {
         return \Idno\Core\site()->config()->url . 'entry/' . $this->getID() . '/' . $this->getPrettyURLTitle();
     } else {
         return parent::getURL();
     }
 }
开发者ID:phpsource,项目名称:idno,代码行数:8,代码来源:Entry.php

示例2: getURL

 function getURL()
 {
     if (!$this->getSlug() && $this->getID()) {
         return \Idno\Core\site()->config()->url . 'rsvp/' . $this->getID() . '/';
     } else {
         return parent::getURL();
     }
 }
开发者ID:phpsource,项目名称:idno,代码行数:8,代码来源:RSVP.php

示例3: getURL

 function getURL()
 {
     if ($this->getID()) {
         return \Idno\Core\site()->config()->url . 'slides/' . $this->getID();
         // . '/' . $this->getPrettyURLTitle();
     } else {
         return parent::getURL();
     }
 }
开发者ID:sensiblemn,项目名称:Presentation,代码行数:9,代码来源:Slides.php

示例4: getURL

 function getURL()
 {
     // If we have a URL override, use it
     if (!empty($this->url)) {
         return $this->url;
     }
     if (!empty($this->canonical)) {
         return $this->canonical;
     }
     if (!$this->getSlug() && $this->getID()) {
         return \Idno\Core\Idno::site()->config()->url . 'event/' . $this->getID() . '/' . $this->getPrettyURLTitle();
     } else {
         return parent::getURL();
     }
 }
开发者ID:smartboyathome,项目名称:Known,代码行数:15,代码来源:Event.php

示例5: entityToActivityStreamsObject

 /**
  * Converts Idno entities into ActivityStreams objects
  *
  * @param \Idno\Common\Entity $entity
  * @return array
  */
 function entityToActivityStreamsObject(\Idno\Common\Entity $entity)
 {
     $object = array();
     $owner = $entity->getOwnerID();
     if (!empty($owner) && $owner != $entity->getUUID()) {
         $object['author'] = $this->entityToActivityStreamsObject($entity->getOwner());
     }
     $object['displayName'] = $entity->getTitle();
     $object['id'] = $entity->getUUID();
     $object['objectType'] = $entity->getActivityStreamsObjectType();
     $object['published'] = date('Y-m-d\\TH:i:sP', $entity->created);
     $object['updated'] = date('Y-m-d\\TH:i:sP', $entity->updated);
     $object['url'] = $entity->getURL();
     return $object;
 }
开发者ID:sintoris,项目名称:Known,代码行数:21,代码来源:ActivityStreamPost.php

示例6: Entity

    /**
     * When we get a webmention where the source is a feed, make
     * sure we handle it gracefully.
     */
    function testAddWebmentions_RemoteFeed()
    {
        $entity = new Entity();
        $entity->setOwner($this->user());
        $entity->title = "This post will be the webmention target";
        $entity->publish();
        $this->toDelete[] = $entity;
        $target = $entity->getURL();
        $source = 'http://example.com/';
        $sourceContent = <<<EOD
<!DOCTYPE html>
<html>
<body>
  <div class="h-entry">
    <a class="p-author h-card" href="https://example.com/">Jane Example</a>
    <span class="p-name e-content">This is just nonsense</span>
    <a class="u-url" href="http://example.com/2015/this-is-just-nonsense">permalink</a>
  </div>
  <div class="h-entry">
    <a class="u-in-reply-to" href="{$target}">in reply to</a>
    <a class="p-author h-card" href="https://example.com/">Jane Example</a>
    <span class="p-name e-content">This is a reply</span>
    <a class="u-url" href="http://example.com/2015/this-is-a-reply">permalink</a>
  </div>
  <div class="h-entry">
    <a class="p-author h-card" href="https://example.com/">Jane Example</a>
    <span class="p-name e-content">This is probably really serious</span>
    <a class="u-url" href="http://example.com/2015/this-is-probably-really-serious">permalink</a>
  </div>
</body>
</html>
EOD;
        $sourceResp = ['response' => 200, 'content' => $sourceContent];
        $sourceMf2 = (new \Mf2\Parser($sourceContent, $source))->parse();
        $entity->addWebmentions($source, $target, $sourceResp, $sourceMf2);
        $this->assertEmpty($entity->getAllAnnotations());
    }
开发者ID:smartboyathome,项目名称:Known,代码行数:41,代码来源:EntityTest.php


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