/multividas-cards-php

Build Multividas Cards markup in a PHP object

Primary LanguagePHPMIT LicenseMIT

Multividas Cards PHP

Tests Total Downloads License

Multividas Cards summarize webpage content for inline expansion of linked content on Multividas.com and Multividas native applications (iOS, Android, Mac). Multividas users may select an individual Thread and immediately view a content summary including a linked title, content description, image, author attribution, site attribution, and inline video.

The MultividasCard PHP class helps you build Multividas Card markup for your website. Build a summary or photo card, set the appropriate attributes, and build elements suitable for output inside your (x)HTML document .

Installation

Require this package with composer. It is recommended to only require the package for development.

composer require multividas/multividas-cards-php --dev

Multividas Card meta tags

These HTML meta tags provide Multividas with information about your webpage, including the card type, your Multividas handle, page title, a brief description, and an image link for effective content sharing on the platform.

<meta name="multividas:card" content="summary" />
<meta name="multividas:site" content="@itsmedragoncode" />
<meta name="multividas:title" content="ItsMeDragonCode" />
<meta name="multividas:description" content="Lorem Ipsum is simply dummy text of the printing and typesetting industry." />
<meta name="multividas:image" content="https://avatars.githubusercontent.com/u/89612812?v=4" />

multividas:card

Summary Card

A Multividas Card is a "summary" by default.

Create a summary card By including Multividas Card markup in your :

<?php

// load MultividasCard
if (!class_exists('MultividasCard'))
  require_once(dirname(__FILE__) .'/multividas-card.php');

// build a card
$card = new MultividasCard("summary");
$card->setSite('multividas');
$card->setTitle('https://multividas.com/');
$card->setDescription('With Multividas.com you can share short texts and posts, leaving comments and have discussions on threads.');
// optional
$card->setImage('01hm6xtg795hj1wx3dh33ftqy9', 'https://static-assets.multividas.com/storage/factory/pages/multividas/multividas-blogging-platform-multividas-social-media-blog-multividas-posts-threads-multividas-comments-discussions-multividas-short-texts-multividas-social-blogging.png', 'image/webp');

// echo a string of <meta> elements
echo $card->asHTML();

?>

Need helps? Reach me out

Email: multividasdotcom@gmail.com

All the best 🍺