Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 2 additions & 44 deletions .dev/macro/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@
*
* @category LiteCommerce
* @author Creative Development LLC <info@cdev.ru>
* @copyright Copyright (c) 2011 Creative Development LLC <info@cdev.ru>. All rights reserved
* @copyright Copyright (c) 2011-2012 Creative Development LLC <info@cdev.ru>. All rights reserved
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.litecommerce.com/
* @see ____file_see____
* @since 1.0.18
*/

define('MACRO_START_DIR', getcwd());
Expand Down Expand Up @@ -52,8 +50,6 @@
* @param string $msg Error message
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_error($msg)
{
Expand All @@ -67,8 +63,6 @@ function macro_error($msg)
* @param string $name Name
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_get_named_argument($name)
{
Expand All @@ -83,8 +77,6 @@ function macro_get_named_argument($name)
* @param integer $number Index
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_get_plain_argument($number)
{
Expand All @@ -97,8 +89,6 @@ function macro_get_plain_argument($number)
* @param string $path Path
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_convert_path_to_class_name($path)
{
Expand All @@ -111,8 +101,6 @@ function macro_convert_path_to_class_name($path)
* @param string $class Class name
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_convert_class_name_to_path($class)
{
Expand All @@ -126,8 +114,6 @@ function macro_convert_class_name_to_path($class)
* @param string $data File content
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_file_put_contents($path, $data)
{
Expand All @@ -146,8 +132,6 @@ function macro_file_put_contents($path, $data)
* @param string $path path
*
* @return boolean
* @see ____func_see____
* @since 1.0.18
*/
function macro_is_entity($path)
{
Expand All @@ -162,8 +146,6 @@ function macro_is_entity($path)
* @param string $moduleName Module name OPTIONAL
*
* @return string
* @see ____func_see____
* @since 1.0.24
*/
function macro_assemble_class_name($suffix, $moduleAuthor = null, $moduleName = null)
{
Expand All @@ -180,8 +162,6 @@ function macro_assemble_class_name($suffix, $moduleAuthor = null, $moduleName =
* @param string $moduleName Module name OPTIONAL
*
* @return string
* @see ____func_see____
* @since 1.0.24
*/
function macro_assemble_tpl_name($suffix, $moduleAuthor = null, $moduleName = null)
{
Expand All @@ -196,8 +176,6 @@ function macro_assemble_tpl_name($suffix, $moduleAuthor = null, $moduleName = nu
* @param string $class Class full name
*
* @return string
* @see ____func_see____
* @since 1.0.24
*/
function macro_get_class_short_name($class)
{
Expand All @@ -212,8 +190,6 @@ function macro_get_class_short_name($class)
* @param string $camel Camel case string
*
* @return string
* @see ____func_see____
* @since 1.0.24
*/
function macro_convert_camel_to_human_readable($camel)
{
Expand All @@ -233,8 +209,6 @@ function macro_convert_camel_to_human_readable($camel)
* @param string &$path Path
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_check_file_path(&$path)
{
Expand All @@ -255,8 +229,6 @@ function macro_check_file_path(&$path)
* @param string $path Path
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_check_class_file_path($path)
{
Expand All @@ -273,8 +245,6 @@ function macro_check_class_file_path($path)
* @param string &$class Class
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_check_class(&$class)
{
Expand All @@ -290,8 +260,6 @@ function macro_check_class(&$class)
* @param string $module Name
*
* @return void
* @see ____func_see____
* @since 1.0.18
*/
function macro_check_module($author, $module)
{
Expand All @@ -315,8 +283,6 @@ function macro_check_module($author, $module)
* @param string $path Path
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_get_file_header($path)
{
Expand All @@ -341,11 +307,9 @@ function macro_get_file_header($path)
*
* @category LiteCommerce
* @author Creative Development LLC <info@cdev.ru>
* @copyright Copyright (c) 2011 Creative Development LLC <info@cdev.ru>. All rights reserved
* @copyright Copyright (c) 2011-2012 Creative Development LLC <info@cdev.ru>. All rights reserved
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.litecommerce.com/
* @see ____file_see____
* @since 1.0.0
*/


Expand All @@ -358,8 +322,6 @@ function macro_get_file_header($path)
* @param string $path Path
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_get_class_repo_header($path)
{
Expand All @@ -381,8 +343,6 @@ function macro_get_class_repo_header($path)
* @param string $path Path
*
* @return string
* @see ____func_see____
* @since 1.0.18
*/
function macro_get_class_header($path)
{
Expand All @@ -396,8 +356,6 @@ function macro_get_class_header($path)
/**
* Abstract widget
*
* @see ____class_see____
* @since 1.0.0
*/
HEAD;
}
Expand Down
Loading