jeroendesloovere/vcard-bundle

这个Symfony 2包可以生成包含大量数据的vCards。当在iOS 7设备上使用时,它将以.ics文件格式导出,因为iOS设备不支持默认的.vcf文件。

安装数: 71,918

依赖关系: 4

建议者: 0

安全性: 0

星标: 16

关注者: 4

分支: 5

开放问题: 2

类型:symfony-bundle

1.2.3 2018-11-30 07:35 UTC

This package is auto-updated.

Last update: 2024-08-24 04:02:45 UTC


README

Symfony2包用于创建vCards。它使用了VCard类

使用方法

安装

composer.json

"require": {
    "jeroendesloovere/vcard-bundle": "1.0.*"
}

以及在 app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...,
        new JeroenDesloovere\Bundle\VCardBundle\JeroenDesloovereVCardBundle()
    );
}

示例

$vcard = $this->get('jeroendesloovere.vcard');

$vcard->addName('Jeroen', 'Desloovere');
$vcard->download();