Work in process, not implement yet.
- Every variable must be uppercase
- only
A-Z
and0-9
and_
are accepted
Internal variable is a private variable and shouldn't read or write by any end user.
- Must prefix with
__MYZS__
External variable is a readonly variable writing anything might cause scripts crash or bug.
- Must prefix with
_MYZS_
Configable variable is a read / write variable which able to set what ever value it needs to update script configuration
- Must prefix with
MYZS_
- Every method must be lowercase
- only
a-z
,-
and:
are accepted
Private method should using by current file only, not shared with any files or directories
- Must prefix with
_myzs:private:
Internal method will available for this scripts only. This not meant to used by any end user. Expected rapidly changes from time over time.
- Must prefix with
_myzs:internal:
Public method is for end user to use.
- Must prefix with
myzs:
Configable variable syntax
- Must prefix with
MYZS_PG_
Method syntax
- Must prefix with
myzs:pg:
Configable variable syntax
- Must prefix with
MYZS_ZP_
Method syntax
- Must prefix with
myzs:zplug: