public static object item(object instance, PhpStack stack)
		{
			stack.CalleeName = "item";
			
			object arg1 = stack.PeekValue(1);
			stack.RemoveFrame();
			return ((DOMNodeList)instance).item(stack.Context, arg1);
		}
Example #2
0
		public static object __construct(object instance, PhpStack stack)
		{
			stack.CalleeName = "__construct";
			
			object arg1 = stack.PeekValue(1);
			stack.RemoveFrame();
			return ((DOMXPath)instance).__construct(stack.Context, arg1);
		}
Example #3
0
        public static object Foo(object instance, PhpStack stack)
        {
            // setup the stack, get arguments from the stack
            stack.CalleeName = "Foo";
            object arg1 = stack.PeekValue(1);
            stack.RemoveFrame();

            // call the actual Foo with arguments obtained from the stack
            return ((MyPhpClass)instance).Foo(stack.Context, arg1);
        }
Example #4
0
		public static object __soapCall(object instance, PhpStack stack)
		{
			stack.CalleeName = "__soapCall";
			
			object arg1 = stack.PeekValue(1);
			
			object arg2 = stack.PeekValue(2);
			stack.RemoveFrame();
			return ((SoapClient)instance).__soapCall(stack.Context, arg1, arg2);
		}
Example #5
0
        public static object __construct(object instance, PhpStack stack)
        {
            object argFileName = stack.PeekValue(1);
            object argMode = stack.PeekValueOptional(2);
            PhpReference error = stack.PeekReferenceOptional(3);
            stack.RemoveFrame();

            string filename = PHP.Core.Convert.ObjectToString(argFileName);
            int mode = PHP.Core.Convert.ObjectToInteger(argMode);
            return ((SQLiteDatabase)instance).__construct(stack.Context, filename, mode, error);
        }
Example #6
0
        public static object getModifierNames(object instance, PhpStack stack)
        {
            stack.CalleeName = "getModifierNames";
            object arg1 = stack.PeekValue(1);
            stack.RemoveFrame();

            int typed1 = Core.Convert.ObjectToInteger(arg1);
            return getModifierNames(typed1);
        }
Example #7
0
 public static object hasChildren(object instance, PhpStack stack)
 {
     var allowLinks = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((RecursiveDirectoryIterator)instance).hasChildren(stack.Context/*, allowLinks*/);
 }
Example #8
0
 public static new object __construct(object instance, PhpStack stack)
 {
     var path = stack.PeekValue(1);
     var flags = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((RecursiveDirectoryIterator)instance).__construct(stack.Context, path, flags);
 }
Example #9
0
 public new static object current(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((FilesystemIterator)instance).current(stack.Context);
 }
Example #10
0
 public static object current(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((DirectoryIterator)instance).current(stack.Context);
 }
Example #11
0
 public new static object isFile(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((DirectoryIterator)instance).isFile(stack.Context);
 }
Example #12
0
 public static object prepare(object instance, PhpStack stack)
 {
     object statement = stack.PeekValue(1);
     object driver_options = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((PDO)instance).prepare(stack.Context, statement, driver_options);
 }
Example #13
0
 public static object query(object instance, PhpStack stack)
 {
     object statement = stack.PeekValue(1);
     object fetch_to_mode = stack.PeekValueOptional(2);
     object fetch_to_dest = stack.PeekValueOptional(3);
     object fetch_to_args = stack.PeekValueOptional(4);
     stack.RemoveFrame();
     return ((PDO)instance).query(stack.Context, statement, fetch_to_mode, fetch_to_dest, fetch_to_args);
 }
Example #14
0
 public static object quote(object instance, PhpStack stack)
 {
     object str = stack.PeekValue(1);
     object paramType = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((PDO)instance).quote(stack.Context, str, paramType);
 }
Example #15
0
 public static object getAttribute(object instance, PhpStack stack)
 {
     object attribute = stack.PeekValue(1);
     stack.RemoveFrame();
     return ((PDO)instance).getAttribute(stack.Context, attribute);
 }
Example #16
0
 public static object isFile(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((SplFileInfo)instance).isFile(stack.Context);
 }
Example #17
0
 public static new object __construct(object instance, PhpStack stack)
 {
     var path = stack.PeekValue(1);
     stack.RemoveFrame();
     return ((DirectoryIterator)instance).__construct(stack.Context, path);
 }
Example #18
0
 public static object commit(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((PDO)instance).commit(stack.Context);
 }
Example #19
0
 public new static object __toString(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((SplFileInfo)instance).__toString(stack.Context);
 }
Example #20
0
 public static object rollback(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((PDO)instance).rollback(stack.Context);
 }
Example #21
0
 public static object seek(object instance, PhpStack stack)
 {
     object position = stack.PeekValue(1);
     stack.RemoveFrame();
     return ((DirectoryIterator)instance).seek(stack.Context, position);
 }
Example #22
0
 public static object errorInfo(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((PDO)instance).errorInfo(stack.Context);
 }
Example #23
0
 public static object __construct(object instance, PhpStack stack)
 {
     var filename = stack.PeekValue(1);
     stack.RemoveFrame();
     return ((SplFileInfo)instance).__construct(stack.Context, filename);
 }
Example #24
0
 public static object exec(object instance, PhpStack stack)
 {
     object statement = stack.PeekValue(1);
     stack.RemoveFrame();
     return ((PDO)instance).exec(stack.Context, statement);
 }
Example #25
0
 public static object getChildren(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((RecursiveDirectoryIterator)instance).getChildren(stack.Context);
 }
Example #26
0
 public static object inTransaction(object instance, PhpStack stack)
 {
     stack.RemoveFrame();
     return ((PDO)instance).inTransaction(stack.Context);
 }
Example #27
0
		/// <summary>
		/// Default callback for <see cref="Map"/>.
		/// </summary>
		/// <param name="instance">Unused.</param>
		/// <param name="stack">A PHP stack.</param>
		/// <returns>A <see cref="PhpArray"/> containing items on the stack (passed as arguments).</returns>
		private static object MapIdentity(object instance, PhpStack stack)
		{
			PhpArray result = new PhpArray(stack.ArgCount, 0);

			for (int i = 1; i <= stack.ArgCount; i++)
			{
				result.Add(PhpVariable.Copy(stack.PeekValueUnchecked(i), CopyReason.PassedByCopy));
			}
			stack.RemoveFrame();

			return result;
		}
Example #28
0
 public static object lastInsertId(object instance, PhpStack stack)
 {
     object name = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((PDO)instance).lastInsertId(stack.Context, name);
 }
Example #29
0
        public static object export(object instance, PhpStack stack)
        {
            stack.CalleeName = "export";
            object arg1 = stack.PeekValue(1);
            object arg2 = stack.PeekValueOptional(2);
            stack.RemoveFrame();

            Reflector typed1 = arg1 as Reflector;
            if (typed1 == null) { PhpException.InvalidArgumentType("reflector", "Reflector"); return null; }
            bool typed2 = (ReferenceEquals(arg2, Arg.Default)) ? false : Core.Convert.ObjectToBoolean(arg2);

            return export(typed1, typed2);
        }
Example #30
0
 public static object __construct(object instance, PhpStack stack)
 {
     object argDSN = stack.PeekValue(1);
     object argUsername = stack.PeekValueOptional(2);
     object argPassword = stack.PeekValueOptional(3);
     object argDriverOptions = stack.PeekValueOptional(4);
     stack.RemoveFrame();
     return ((PDO)instance).__construct(stack.Context, argDSN, argUsername, argPassword, argDriverOptions);
 }