aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kiryuhin <frei@neonxp.info>2014-02-14 00:17:43 +0400
committerAlexander Kiryuhin <frei@neonxp.info>2014-02-14 00:17:43 +0400
commitea9ef1c67bef81cdffde7466b55f2e2cf5c6303b (patch)
treefb5e102132a4a4956b47679089f3c33be611bac6
+ Initial commit
-rw-r--r--DependencyInjection/Configuration.php20
-rw-r--r--DependencyInjection/nxpRutilsExtension.php28
-rw-r--r--README.md43
-rw-r--r--Resources/config/services.yml5
-rw-r--r--Resources/doc/index.rst41
-rw-r--r--Twig/RutilsExtension.php170
-rw-r--r--composer.json22
-rw-r--r--nxpRutilsBundle.php9
8 files changed, 338 insertions, 0 deletions
diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
new file mode 100644
index 0000000..45b3ca8
--- /dev/null
+++ b/DependencyInjection/Configuration.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace nxp\RutilsBundle\DependencyInjection;
+
+use Symfony\Component\Config\Definition\Builder\TreeBuilder;
+use Symfony\Component\Config\Definition\ConfigurationInterface;
+
+class Configuration implements ConfigurationInterface
+{
+ /**
+ * {@inheritDoc}
+ */
+ public function getConfigTreeBuilder()
+ {
+ $treeBuilder = new TreeBuilder();
+ $rootNode = $treeBuilder->root('rutils');
+
+ return $treeBuilder;
+ }
+}
diff --git a/DependencyInjection/nxpRutilsExtension.php b/DependencyInjection/nxpRutilsExtension.php
new file mode 100644
index 0000000..2b2a39b
--- /dev/null
+++ b/DependencyInjection/nxpRutilsExtension.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace nxp\RutilsBundle\DependencyInjection;
+
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+use Symfony\Component\Config\FileLocator;
+use Symfony\Component\HttpKernel\DependencyInjection\Extension;
+use Symfony\Component\DependencyInjection\Loader;
+
+/**
+ * This is the class that loads and manages your bundle configuration
+ *
+ * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html}
+ */
+class nxpRutilsExtension extends Extension
+{
+ /**
+ * {@inheritDoc}
+ */
+ public function load(array $configs, ContainerBuilder $container)
+ {
+ $configuration = new Configuration();
+ $config = $this->processConfiguration($configuration, $configs);
+
+ $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
+ $loader->load('services.yml');
+ }
+}
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8dcdf47
--- /dev/null
+++ b/README.md
@@ -0,0 +1,43 @@
+Rutils Symfony 2 Bundle
+=======================
+
+Простой бандл для Symfony 2 содержащий в себе расширение для Twig, позволяющее использовать функции из библиотеки [RUtils](RUtils: https://github.com/Andre-487/php_rutils/) в шаблонах.
+
+Допускается как вызов в стиле функций:
+
+ {{ getPlural(10, ['гвоздь', 'гвоздя', 'гвоздей']) }}
+
+так и в стиле фильтров:
+
+ {{ 10 | getPlural(['гвоздь', 'гвоздя', 'гвоздей']) }}
+
+поддерживаются все методы библиотеки:
+
+Числительные:
+
+ getInWords\2 - вывод числа прописью
+ getInWordsInt\2 - вывод числа прописью
+ getInWordsFloat\2 - вывод числа прописью
+ getPlural\3 - выбор формы множественного числа и вывод вместе с числом
+ choosePlural\2 - выбор только формы множественного числа
+ sumString\3 - выбор формы и вывод прописью
+ getRubles\2 - вывод суммы денег в рублях
+
+Даты:
+
+ ruStrFTime\6 - вывод даты строкой
+ distanceOfTimeInWords\3 - временной период
+ getAge\1 - возраст
+
+Транслитерация:
+
+ translify\1 - транслитерация
+ detranslify\1 - обратное преобразование
+ slugify\1 - подготовка для использования в URL'ях или путях
+
+Типографика:
+ typography\2
+
+TODO:
+
+* написать нормальную документацию \ No newline at end of file
diff --git a/Resources/config/services.yml b/Resources/config/services.yml
new file mode 100644
index 0000000..431641b
--- /dev/null
+++ b/Resources/config/services.yml
@@ -0,0 +1,5 @@
+services:
+ nxp.twig.rutils_extension:
+ class: nxp\RutilsBundle\Twig\RutilsExtension
+ tags:
+ - { name: twig.extension } \ No newline at end of file
diff --git a/Resources/doc/index.rst b/Resources/doc/index.rst
new file mode 100644
index 0000000..4b94f4d
--- /dev/null
+++ b/Resources/doc/index.rst
@@ -0,0 +1,41 @@
+Rutils Symfony 2 Bundle
+=======================
+
+Простой бандл для Symfony 2 содержащий в себе расширение для Twig, позволяющее использовать функции из библиотеки RUtils_ в шаблонах.
+
+Допускается как вызов в стиле функций::
+
+ {{ getPlural(10, ['гвоздь', 'гвоздя', 'гвоздей']) }}
+
+так и в стиле фильтров::
+
+ {{ 10 | getPlural(['гвоздь', 'гвоздя', 'гвоздей']) }}
+
+Поддерживаются все методы библиотеки:
+
+Числительные::
+ getInWords\2 - вывод числа прописью
+ getInWordsInt\2 - вывод числа прописью
+ getInWordsFloat\2 - вывод числа прописью
+ getPlural\3 - выбор формы множественного числа и вывод вместе с числом
+ choosePlural\2 - выбор только формы множественного числа
+ sumString\3 - выбор формы и вывод прописью
+ getRubles\2 - вывод суммы денег в рублях
+
+Даты::
+ ruStrFTime\6 - вывод даты строкой
+ distanceOfTimeInWords\3 - временной период
+ getAge\1 - возраст
+
+Транслитерация::
+ translify\1 - транслитерация
+ detranslify\1 - обратное преобразование
+ slugify\1 - подготовка для использования в URL'ях или путях
+
+Типографика::
+ typography\2
+
+TODO::
+ написать нормальную документацию
+
+.. _RUtils: https://github.com/Andre-487/php_rutils/ \ No newline at end of file
diff --git a/Twig/RutilsExtension.php b/Twig/RutilsExtension.php
new file mode 100644
index 0000000..d4cf8c2
--- /dev/null
+++ b/Twig/RutilsExtension.php
@@ -0,0 +1,170 @@
+<?php
+/**
+ * @author Alexander NeonXP Kiryukhin <frei@neonxp.info>
+ */
+
+namespace nxp\RutilsBundle\Twig;
+
+use php_rutils\RUtils;
+use php_rutils\struct\TimeParams;
+
+class RutilsExtension extends \Twig_Extension
+{
+ public function getFilters()
+ {
+ $numeral = RUtils::numeral();
+ $date = RUtils::dt();
+ $translit = RUtils::translit();
+ $typography = RUtils::typo();
+ return [
+ new \Twig_SimpleFilter('getInWords', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWords($amount, $gender);
+ }),
+ new \Twig_SimpleFilter('getInWordsInt', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWordsInt($amount, $gender);
+ }),
+ new \Twig_SimpleFilter('getInWordsFloat', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWordsFloat($amount, $gender);
+ }),
+ new \Twig_SimpleFilter('getPlural', function ($amount, array $variants, $absence = null) use ($numeral) {
+ return $numeral->getPlural($amount, $variants, $absence);
+ }),
+ new \Twig_SimpleFilter('choosePlural', function ($amount, array $variants) use ($numeral) {
+ return $numeral->choosePlural($amount, $variants);
+ }),
+ new \Twig_SimpleFilter('sumString', function ($amount, $gender, array $variants = null) use ($numeral) {
+ return $numeral->sumString($amount, $gender, $variants);
+ }),
+ new \Twig_SimpleFilter('getRubles', function ($amount, $zeroForKopeck = false) use ($numeral) {
+ return $numeral->getRubles($amount, $zeroForKopeck);
+ }),
+ new \Twig_SimpleFilter('ruStrFTime', function (
+ \DateTime $dateTime,
+ $format = 'd F Y',
+ $monthInflected = false,
+ $dayInflected = false,
+ $preposition = false,
+ $timezone = null
+ ) use ($date) {
+ $params = TimeParams::create(
+ [
+ 'date' => $dateTime,
+ 'format' => $format,
+ 'monthInflected' => $monthInflected,
+ 'dayInflected' => $dayInflected,
+ 'preposition' => $preposition,
+ 'timezone' => $timezone
+ ]
+ );
+ return $date->ruStrFTime($params);
+ }),
+ new \Twig_SimpleFilter('distanceOfTimeInWords', function (
+ $toTime,
+ $fromTime = null,
+ $accuracy = RUtils::ACCURACY_YEAR
+ ) use ($date) {
+ return $date->distanceOfTimeInWords($toTime, $fromTime, $accuracy);
+ }),
+ new \Twig_SimpleFilter('getAge', function ($birthDate) use ($date) {
+ return $date->getAge($birthDate);
+ }),
+ new \Twig_SimpleFilter('translify', function ($inString) use ($translit) {
+ return $translit->translify($inString);
+ }),
+ new \Twig_SimpleFilter('detranslify', function ($inString) use ($translit) {
+ return $translit->detranslify($inString);
+ }),
+ new \Twig_SimpleFilter('slugify', function ($inString) use ($translit) {
+ return $translit->slugify($inString);
+ }),
+ new \Twig_SimpleFilter('typography', function ($text, array $rules = null) use ($typography) {
+ return $typography->typography($text, $rules);
+ })
+ ];
+ }
+
+
+ public function getFunctions()
+ {
+ $numeral = RUtils::numeral();
+ $date = RUtils::dt();
+ $translit = RUtils::translit();
+ $typography = RUtils::typo();
+ return [
+ new \Twig_SimpleFunction('getInWords', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWords($amount, $gender);
+ }),
+ new \Twig_SimpleFunction('getInWordsInt', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWordsInt($amount, $gender);
+ }),
+ new \Twig_SimpleFunction('getInWordsFloat', function ($amount, $gender = RUtils::MALE) use ($numeral) {
+ return $numeral->getInWordsFloat($amount, $gender);
+ }),
+ new \Twig_SimpleFunction('getPlural', function ($amount, array $variants, $absence = null) use ($numeral) {
+ return $numeral->getPlural($amount, $variants, $absence);
+ }),
+ new \Twig_SimpleFunction('choosePlural', function ($amount, array $variants) use ($numeral) {
+ return $numeral->choosePlural($amount, $variants);
+ }),
+ new \Twig_SimpleFunction('sumString', function ($amount, $gender, array $variants = null) use ($numeral) {
+ return $numeral->sumString($amount, $gender, $variants);
+ }),
+ new \Twig_SimpleFunction('getRubles', function ($amount, $zeroForKopeck = false) use ($numeral) {
+ return $numeral->getRubles($amount, $zeroForKopeck);
+ }),
+ new \Twig_SimpleFunction('ruStrFTime', function (
+ \DateTime $dateTime,
+ $format = 'd F Y',
+ $monthInflected = false,
+ $dayInflected = false,
+ $preposition = false,
+ $timezone = null
+ ) use ($date) {
+ $params = TimeParams::create(
+ [
+ 'date' => $dateTime,
+ 'format' => $format,
+ 'monthInflected' => $monthInflected,
+ 'dayInflected' => $dayInflected,
+ 'preposition' => $preposition,
+ 'timezone' => $timezone
+ ]
+ );
+ return $date->ruStrFTime($params);
+ }),
+ new \Twig_SimpleFunction('distanceOfTimeInWords', function (
+ $toTime,
+ $fromTime = null,
+ $accuracy = RUtils::ACCURACY_YEAR
+ ) use ($date) {
+ return $date->distanceOfTimeInWords($toTime, $fromTime, $accuracy);
+ }),
+ new \Twig_SimpleFunction('getAge', function ($birthDate) use ($date) {
+ return $date->getAge($birthDate);
+ }),
+ new \Twig_SimpleFunction('translify', function ($inString) use ($translit) {
+ return $translit->translify($inString);
+ }),
+ new \Twig_SimpleFunction('detranslify', function ($inString) use ($translit) {
+ return $translit->detranslify($inString);
+ }),
+ new \Twig_SimpleFunction('slugify', function ($inString) use ($translit) {
+ return $translit->slugify($inString);
+ }),
+ new \Twig_SimpleFunction('typography', function ($text, array $rules = null) use ($typography) {
+ return $typography->typography($text, $rules);
+ })
+ ];
+ }
+
+ /**
+ * Returns the name of the extension.
+ *
+ * @return string The extension name
+ */
+ public function getName()
+ {
+ return 'rutils_extension';
+ }
+
+} \ No newline at end of file
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..5f13ed3
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,22 @@
+{
+ "name": "nxp/rutils-bundle",
+ "description": "Rutils Symfony 2 bundle",
+ "minimum-stability": "stable",
+ "keywords": ["russian", "numbers to text"],
+ "homepage": "http://github.com/NeonXP/RutilsBundle",
+ "license": "GPLv3",
+ "authors": [
+ {
+ "name": "Alexander 'NeonXP' Kiryukhin",
+ "email": "frei@neonxp.info"
+ }
+ ],
+ "autoload": {
+ "psr-0": {"NXP\\RutilsBundle": ""}
+ },
+ "require": {
+ "php": ">=5.4.0",
+ "symfony/framework-bundle": "~2.2",
+ "andre_487/php_rutils": "1.1.1"
+ }
+}
diff --git a/nxpRutilsBundle.php b/nxpRutilsBundle.php
new file mode 100644
index 0000000..a46734f
--- /dev/null
+++ b/nxpRutilsBundle.php
@@ -0,0 +1,9 @@
+<?php
+
+namespace nxp\RutilsBundle;
+
+use Symfony\Component\HttpKernel\Bundle\Bundle;
+
+class nxpRutilsBundle extends Bundle
+{
+}