PHP code example of kiefer79 / kss-php
1. Go to this page and download the library: Download kiefer79/kss-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kiefer79 / kss-php example snippets
guide = new \Kss\Parser('public/stylesheets');
$section = $styleguide->getSection('Buttons - Star Button');
// Returns a \Kss\Section object
echo $section->getTitle();
// Echoes "Star Button"
echo $section->getDescription();
// echoes "A button suitable for giving stars to someone."
echo $section->getMarkup();
// echoes "<a class="button star $modifierClass">Button</a>"
$modifier = current($section->getModifiers());
// Returns a \Kss\Modifier object
echo $modifier->getName();
// echoes ':hover'
echo $modifier->getClassName();
// echoes 'psuedo-class-hover'
echo $modifier->getDescription();
// echoes 'Subtle hover highlight'
echo $modifier->getExampleHtml();
// echoes <a class="button stars stars-given">Button</a> for the .stars-given modifier