Все комментарии должны быть на английском языке. === Комментарии в PHP === \\ Простые комментарии // используются для поясняющего комментирования отдельных конструкций кода \\ Comments go on the line ABOVE the code, NOT to the right of the code! \\ \\ комментирование файлов, классов, констант, методов, функций осуществляется в соответствии со стандартом PHPDocumentor Example of commented the start of page \\ \\ '' \\ /** \\ * Template processor class \\ * \\ * The template processor class allows keeping HTML code completely free of PHP code, but contain replacement fields. \\ * The class provides you with functions which can fill in the replacement fields with arbitrary strings. \\ * @package common \\ */ '' \\ \\ ==== Комментарии в JS ==== \\ \\ Простые комментарии // используются для поясняющего комментирования отдельных конструкций кода \\ \\ комментирование функций осуществляется в стиле псевдо PHPDocumentor \\ \\ '' \\ /** \\ * send ajax request for picture render \\ * @param label_section string identifier of section \\ * @return string identifier of message \\ */ ''