Skip to content

Instantly share code, notes, and snippets.

@zaurmag
zaurmag / include-js-css-joomla.php
Last active August 15, 2016 12:29
Подключение скриптов в шаблонах Joomla
<?php
// Подключение файла JS
JHtml::script(JUri::base().'templates/'.$this->template.'/js/js.js', false);
$document = JFactory::getDocument();
// Add Javascript
$document->addScriptDeclaration('
window.event("domready", function() {
@zaurmag
zaurmag / clipping-text.php
Last active August 7, 2016 17:35
Функция обрезания текста на php
<?php
$text = strip_tags($curr->name);
if (!function_exists('truncate_words')) {
function truncate_words($text, $limit=30) {
$text=mb_substr($text,0,$limit);
/*если не пустая обрезаем до последнего пробела*/
if(mb_substr($text,mb_strlen($text)-1,1) && mb_strlen($text)==$limit) {
$textret=mb_substr($text,0,mb_strlen($text)-mb_strlen(strrchr($text,' ')));
if(!empty($textret)) {
return $textret."...";