This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Captcha | |
{ | |
private static function generate() { | |
$fontFile = './captcha.ttf'; | |
$fontSize = 18; | |
$charsAmount = 5; | |
$chars = '23456789BCDFGHJKMNPQRSTVWXYZ'; | |
$stringOffsetX = 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Archiver | |
{ | |
protected $files = array(); | |
public function pack($source, $archivePath=null) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Archiver | |
{ | |
protected $output = array(); | |
public function pack($source, $destination=null) | |
{ | |
$source = realpath($source); | |
$sourcePath = dirname($source); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Блог/Новости | |
-Пагинация как плагин | |
-Меню можно встроенное или как плагин до 2 - 3 уровней вложености | |
-Менеджер файлов | |
-Текстовый редактор для шаблонов | |
-Сниппеты/Шорткоды для плагинов по типу {blog} {blog-list} | |
-Фотогалерея/Портфолио | |
-Кеширование | |
-Локализация | |
-Плагины... |
NewerOlder