Правила оформления текста
Заголовок H2
Заголовок H3
Заголовок H4
Эпиграф
Код:
.. epigraph::
No matter where you go, there you are.
-- Buckaroo Banzai
Результат:
No matter where you go, there you are.
—Buckaroo Banzai
Цитата
Код:
.. highlights::
highlights
Результат:
highlights
Код:
.. pull-quote::
pull-quote
Результат:
pull-quote
Выделенные блоки
Код:
.. warning::
Предупреждение
Результат:
Предупреждение
Предупреждение
Код:
.. hint::
Намек
Результат:
Подсказка
Намек
Код:
.. important::
Важный
Результат:
Важно
Важный
Код:
.. note::
Примечание
Результат:
Примечание
Примечание
Тема
Код:
.. topic:: Тема
Содержание темы
Результат:
Тема
Содержание темы
Ссылки
Код:
`Внешняя ссылка <https://www.cs-cart.com/download-cs-cart.html>`_
Результат:
Код:
:doc:`Внутренняя ссылка </manager/index>`
Результат:
Скачать файл
Код:
:download:`download <files/func.php>`
Список
Код:
* Уровень 1
- Уровень 2
+ Уровень 3
+ Уровень 3
- Уровень 2
* Уровень 1
* Уровень 1
Результат:
- Уровень 1
- Уровень 2
- Уровень 3
- Уровень 3
- Уровень 2
- Уровень 2
- Уровень 1
- Уровень 1
Форматирование текста
Код:
*Курсив*
Результат:
Курсив
Код:
**Жирный**
Результат:
Жирный
Код:
``Рамка``
Результат:
Рамка
Вставить код
app/addons/advanced_addon/controllers/backend/index.post.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <?php
/***************************************************************************
* *
* (c) 2004 Vladimir V. Kalynyak, Alexey V. Vinokurov, Ilya M. Shalnev *
* *
* This is commercial software, only users who have purchased a valid *
* license and accept to the terms of the License Agreement can install *
* and use this program. *
* *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
****************************************************************************/
if ( !defined('AREA') ) { die('Access denied'); }
function fn_advanced_addon_get_category_data_pre($category_id, $field_list, $get_main_pair, $skip_company_condition, $lang_code)
{
//Getting authentication data to identify user
$auth = $_SESSION['auth'];
//Checking if the user is logged in and resides at the customer area
if (!empty($auth['user_id']) && AREA == 'C') {
//Checking if the database has data on the user.
//Creating new record if necessary, appending existing data if possible.
$viewed_categories = db_get_field('SELECT categories FROM ?:advanced_addon_data WHERE user_id = ?i', $auth['user_id']);
if (!empty($viewed_categories)) {
$viewed_categories = unserialize($viewed_categories);
}
$viewed_categories[$category_id] = true;
$viewed_categories = serialize($viewed_categories);
db_query('REPLACE INTO ?:advanced_addon_data VALUES (?i, ?s)', $auth['user_id'], $viewed_categories);
}
}
?>
|
addons/advanced_addon/addon.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?xml version="1.0"?>
<addon scheme="2.0">
<id>advanced_addon</id>
<name>Advanced Add-on</name>
<description>Advanced Add-on</description>
<version>1.0</version>
<priority>100500</priority>
<status>active</status>
<queries>
<item for="install">DROP TABLE IF EXISTS ?:advanced_addon_data;</item>
<item for="install">
CREATE TABLE `?:advanced_addon_data` (
`user_id` int(11) unsigned NOT NULL DEFAULT 0,
`categories` text NOT NULL DEFAULT '',
PRIMARY KEY (`user_id`)
) Engine=MyISAM DEFAULT CHARSET UTF8;
</item>
<item for="uninstall">DROP TABLE IF EXISTS ?:advanced_addon_data;</item>
</queries>
</addon>
|
$a = '100';
Таблица
Treat | Quantity | Description |
---|---|---|
Albatross | 2.99 | On a stick! |
Crunchy Frog | 1.49 | If we took the bones out, it wouldn’t be crunchy, now would it? |
Gannet Ripple | 1.99 | On a stick! |
A | not A |
---|---|
False | True |
True | False |
Treat | Quantity | Description |
---|---|---|
Albatross | 2.99 | On a stick! |
Crunchy Frog | 1.49 | If we took the bones out, it wouldn’t be crunchy, now would it? |
Gannet Ripple | 1.99 | On a stick! |