This file contains hidden or 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
base_url: file:///g:/tmp/mebel/stolplit/www.stolplit.ru | |
start_url: /index.htm | |
root: | |
root_category: | |
entity: category | |
container: ["#menuHead", 0, 0] | |
selector: ["td", 0, -1] | |
item_uri: ["a", href, 0] | |
fields: | |
name: ["a", text] |
This file contains hidden or 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 | |
namespace App\Common; | |
class Transliterator | |
{ | |
public static function transliterate( $strOrig, $separator = '-' ): string | |
{ | |
$str = $strOrig; |
This file contains hidden or 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
/** | |
* @ORM\Table(name="users") | |
* @ORM\Entity(repositoryClass="UserRepository") | |
*/ | |
class User | |
{ | |
/** | |
* @ORM\Id | |
* @ORM\GeneratedValue(strategy="IDENTITY") | |
* @ORM\Column(type="integer") |