├── .gitignore ├── examples └── main.block.team │ ├── .description.php │ ├── .parameters.php │ ├── class.php │ ├── lang │ └── ru │ │ ├── .description.php │ │ ├── .parameters.php │ │ └── class.php │ └── templates │ └── .default │ ├── lang │ └── ru │ │ └── template.php │ └── template.php ├── mscoder ├── menu │ ├── .description.php │ ├── .parameters.php │ ├── component.php │ ├── images │ │ └── menu.gif │ ├── lang │ │ └── ru │ │ │ ├── .description.php │ │ │ └── .parameters.php │ ├── stub.php │ └── templates │ │ ├── .default │ │ └── template.php │ │ └── left │ │ └── template.php ├── standard.elements.list │ ├── .description.php │ ├── .parameters.php │ ├── class.php │ ├── lang │ │ └── ru │ │ │ ├── .description.php │ │ │ ├── .parameters.php │ │ │ └── class.php │ └── templates │ │ └── .default │ │ ├── lang │ │ └── ru │ │ │ └── template.php │ │ └── template.php └── standard.elements │ ├── .description.php │ ├── .parameters.php │ ├── class.php │ ├── lang │ └── ru │ │ ├── .description.php │ │ ├── .parameters.php │ │ └── class.php │ └── templates │ └── .default │ ├── detail.php │ └── index.php └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .idea -------------------------------------------------------------------------------- /examples/main.block.team/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/.description.php -------------------------------------------------------------------------------- /examples/main.block.team/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/.parameters.php -------------------------------------------------------------------------------- /examples/main.block.team/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/class.php -------------------------------------------------------------------------------- /examples/main.block.team/lang/ru/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/lang/ru/.description.php -------------------------------------------------------------------------------- /examples/main.block.team/lang/ru/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/lang/ru/.parameters.php -------------------------------------------------------------------------------- /examples/main.block.team/lang/ru/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/lang/ru/class.php -------------------------------------------------------------------------------- /examples/main.block.team/templates/.default/lang/ru/template.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/main.block.team/templates/.default/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/examples/main.block.team/templates/.default/template.php -------------------------------------------------------------------------------- /mscoder/menu/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/.description.php -------------------------------------------------------------------------------- /mscoder/menu/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/.parameters.php -------------------------------------------------------------------------------- /mscoder/menu/component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/component.php -------------------------------------------------------------------------------- /mscoder/menu/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/images/menu.gif -------------------------------------------------------------------------------- /mscoder/menu/lang/ru/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/lang/ru/.description.php -------------------------------------------------------------------------------- /mscoder/menu/lang/ru/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/lang/ru/.parameters.php -------------------------------------------------------------------------------- /mscoder/menu/stub.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mscoder/menu/templates/.default/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/templates/.default/template.php -------------------------------------------------------------------------------- /mscoder/menu/templates/left/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/menu/templates/left/template.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/.description.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/.parameters.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/class.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/lang/ru/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/lang/ru/.description.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/lang/ru/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/lang/ru/.parameters.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/lang/ru/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/lang/ru/class.php -------------------------------------------------------------------------------- /mscoder/standard.elements.list/templates/.default/lang/ru/template.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mscoder/standard.elements.list/templates/.default/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements.list/templates/.default/template.php -------------------------------------------------------------------------------- /mscoder/standard.elements/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/.description.php -------------------------------------------------------------------------------- /mscoder/standard.elements/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/.parameters.php -------------------------------------------------------------------------------- /mscoder/standard.elements/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/class.php -------------------------------------------------------------------------------- /mscoder/standard.elements/lang/ru/.description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/lang/ru/.description.php -------------------------------------------------------------------------------- /mscoder/standard.elements/lang/ru/.parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/lang/ru/.parameters.php -------------------------------------------------------------------------------- /mscoder/standard.elements/lang/ru/class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mscoder/standard.elements/templates/.default/detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/templates/.default/detail.php -------------------------------------------------------------------------------- /mscoder/standard.elements/templates/.default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/mscoder/standard.elements/templates/.default/index.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraduda/bx-components/HEAD/readme.md --------------------------------------------------------------------------------